diff --git a/args.go b/args.go index c419580..1317105 100644 --- a/args.go +++ b/args.go @@ -22,7 +22,7 @@ type Arguments struct { } var ( - NoCommand = errors.New("command is required") + NoCommand = errors.New("command is required") IntervalTooSmall = errors.New("interval too small") ) @@ -76,7 +76,7 @@ LOOP: return &argument, NoCommand } - if argument.interval < 10 * time.Millisecond { + if argument.interval < 10*time.Millisecond { return nil, IntervalTooSmall } @@ -102,4 +102,4 @@ Options: -h, --help display this help and exit -v, --version output version information and exit`) -} \ No newline at end of file +}