From f322da6399ccc3ba733dc01f17f984a3c52a56c4 Mon Sep 17 00:00:00 2001 From: Daniel Debny Date: Mon, 8 Jan 2024 10:52:06 +0100 Subject: [PATCH] Better comments in the code --- flags.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/flags.go b/flags.go index ac3b412..5c2dec3 100644 --- a/flags.go +++ b/flags.go @@ -11,7 +11,7 @@ type intervalFlag struct { value int } -// Set jest metodą wywoływaną przez pakiet flag, gdy flaga zostanie ustawiona. +// Set is a method called by the flag package when the flag is set. func (f *intervalFlag) Set(s string) error { f.set = true var err error @@ -22,7 +22,7 @@ func (f *intervalFlag) Set(s string) error { return nil } -// String zwraca reprezentację string flagi. +// String returns the string representation of the flag func (f *intervalFlag) String() string { if !f.set { return "not set"