diff options
author | Hubert Hirtz <hubert@hirtz.pm> | 2021-09-13 14:10:09 +0200 |
---|---|---|
committer | Hubert Hirtz <hubert@hirtz.pm> | 2021-09-13 14:10:09 +0200 |
commit | 2eaf8b69e82603093b56ace5fdedbdc0249e77a0 (patch) | |
tree | 22ecc819dd52808dae66eb4017618df6877e2de9 /irc/typing.go | |
parent | Random code improvements/tidying (diff) |
More lints
Diffstat (limited to 'irc/typing.go')
-rw-r--r-- | irc/typing.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/irc/typing.go b/irc/typing.go index 5a3073c..fd1576c 100644 --- a/irc/typing.go +++ b/irc/typing.go @@ -69,7 +69,7 @@ func (ts *Typings) Active(target, name string) { }() } -// Active should be called when a user is done typing to some target. +// Done should be called when a user is done typing to some target. func (ts *Typings) Done(target, name string) { ts.l.Lock() delete(ts.targets, Typing{target, name}) |