1
0
Fork 0
forked from External/ergo

General comments, fix misspellings and lints

This commit is contained in:
Daniel Oaks 2017-06-19 14:53:16 -06:00
parent 124139c097
commit 1c0c4841a1
9 changed files with 81 additions and 38 deletions

View file

@ -15,9 +15,12 @@ import (
type HelpEntryType int
const (
CommandHelpEntry HelpEntryType = 0
// CommandHelpEntry is a help entry explaining a client command.
CommandHelpEntry HelpEntryType = 0
// InformationHelpEntry is a help entry explaining general server info.
InformationHelpEntry HelpEntryType = 1
ISupportHelpEntry HelpEntryType = 2
// ISupportHelpEntry is a help entry explaining a specific RPL_ISUPPORT token.
ISupportHelpEntry HelpEntryType = 2
)
// HelpEntry represents an entry in the Help map.