From d1c791be986be93527a511b1ba7d4dc8c513db54 Mon Sep 17 00:00:00 2001 From: Christian Rocha Date: Mon, 12 Oct 2020 10:59:36 -0400 Subject: [PATCH] Fix another typo in a comment --- commands.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/commands.go b/commands.go index 5a63ac6..117f7a6 100644 --- a/commands.go +++ b/commands.go @@ -33,9 +33,9 @@ func Every(duration time.Duration, fn func(time.Time) Msg) Cmd { } } -// Tick produces a command that at an interval independent of the system clock -// at the given duration. That is, the timer begins when precisely when -// invoked, and runs for its entire duration. +// Tick produces a command at an interval independent of the system clock at +// the given duration. That is, the timer begins when precisely when invoked, +// and runs for its entire duration. // // To produce the command, pass a duration and a function which returns // a message containing the time at which the tick occurred.