From 75c0f09b238ecf302a869afa6343a6d891c21ba5 Mon Sep 17 00:00:00 2001 From: Dustin Pianalto Date: Mon, 6 Apr 2020 11:49:28 -0800 Subject: [PATCH] Update comments for Godoc --- command-manager.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/command-manager.go b/command-manager.go index b35e9af..6a890c0 100644 --- a/command-manager.go +++ b/command-manager.go @@ -35,7 +35,7 @@ func (c *CommandManager) AddCommand(command *Command) error { return nil } -// RemovesCommand removes the command named from the Commands array +// RemoveCommand removes the command named from the Commands array func (c *CommandManager) RemoveCommand(name string) error { deleted := false if _, ok := c.Commands[name]; ok {