fix ModeString

This commit is contained in:
Jeremy Latt
2014-02-09 08:53:06 -08:00
parent 1787ac8ebf
commit 6367e4b654
4 changed files with 15 additions and 4 deletions
+4
View File
@@ -17,6 +17,10 @@ type ModeOp rune
// user mode flags
type UserMode rune
func (mode UserMode) String() string {
return fmt.Sprintf("%c", mode)
}
// channel mode flags
type ChannelMode rune