From 0f68fcca8bcb405ec904527516d04a166cc5caec Mon Sep 17 00:00:00 2001 From: Krypton Date: Tue, 15 Jul 2025 22:10:28 +0200 Subject: [PATCH] fix: Small typo in `ticker off` description --- modules/ticker/ticker.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/ticker/ticker.go b/modules/ticker/ticker.go index e629d2f0..34c4c02b 100644 --- a/modules/ticker/ticker.go +++ b/modules/ticker/ticker.go @@ -43,7 +43,7 @@ func NewTicker(s *session.Session) *Ticker { })) mod.AddHandler(session.NewModuleHandler("ticker off", "", - "Stop the maint icker.", + "Stop the main ticker.", func(args []string) error { return mod.Stop() }))