From 7cf0d54bd492a62cff445dd6e1b8053767e4e96e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Leandro=20L=C3=B3pez?= Date: Mon, 3 Oct 2022 23:14:42 -0300 Subject: [PATCH] docs: fix typo in Tick godoc (#477) --- commands.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands.go b/commands.go index dd3305e..774b0c7 100644 --- a/commands.go +++ b/commands.go @@ -63,7 +63,7 @@ func Every(duration time.Duration, fn func(time.Time) Msg) Cmd { } // 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, +// the given duration. That is, the timer begins precisely when invoked, // and runs for its entire duration. // // To produce the command, pass a duration and a function which returns