docs: fix typo in Tick godoc (#477)

This commit is contained in:
Leandro López 2022-10-03 23:14:42 -03:00 committed by GitHub
parent 7e7a729b31
commit 7cf0d54bd4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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 // 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. // and runs for its entire duration.
// //
// To produce the command, pass a duration and a function which returns // To produce the command, pass a duration and a function which returns