From a81755e41a63aaf7250a0bc7ae402ec20a85d1ca Mon Sep 17 00:00:00 2001 From: Sam Date: Fri, 4 Oct 2019 14:32:35 -0400 Subject: [PATCH] Fix typos --- tcmdAutoReact.go | 1 + types.go | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/tcmdAutoReact.go b/tcmdAutoReact.go index 37b4b1a..76d2e2e 100644 --- a/tcmdAutoReact.go +++ b/tcmdAutoReact.go @@ -1,3 +1,4 @@ +// +ignore // +build type_commands autoreactcmd package main diff --git a/types.go b/types.go index dedae0b..18d9e73 100644 --- a/types.go +++ b/types.go @@ -14,5 +14,5 @@ type Command struct { type TypeCommand struct { Cmd []string // Message types that trigger this command Description string // A short description of the command - Exec func(keybase.ChatAPI) // A function that takes the command (arg[0]) and any arguments (arg[1:]) as input + Exec func(keybase.ChatAPI) // A function that takes a raw chat message as input }