From cc0042f77c895060fe89e7bd1a3c458bf5a6b996 Mon Sep 17 00:00:00 2001 From: Dustin Pianalto Date: Mon, 6 Apr 2020 19:39:32 -0800 Subject: [PATCH] Update comments for Godoc --- status-manager.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/status-manager.go b/status-manager.go index dd90899..33c60c1 100644 --- a/status-manager.go +++ b/status-manager.go @@ -34,7 +34,7 @@ func (s *StatusManager) SetInterval(interval string) { s.Interval = interval } -// UpdateStatus actually updates the status of the bot +// UpdateStatus updates the status of the bot func (s *StatusManager) UpdateStatus(session *discordgo.Session) error { i := rand.Intn(len(s.Values)) err := session.UpdateStatus(0, s.Values[i])