summaryrefslogtreecommitdiff
path: root/rfc.go
diff options
context:
space:
mode:
Diffstat (limited to 'rfc.go')
-rw-r--r--rfc.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/rfc.go b/rfc.go
index 9ec363d..ceeef45 100644
--- a/rfc.go
+++ b/rfc.go
@@ -16,7 +16,7 @@ var (
rfcKW = make(map[string][]string)
)
-func (_ RFC) Handle(conn *irc.Conn, line *irc.Line) {
+func (RFC) Handle(conn *irc.Conn, line *irc.Line) {
if f := strings.Fields(line.Text()); len(f) > 1 {
kw := strings.ToLower(f[1])
if e, ok := rfcKW[kw]; ok {
@@ -32,7 +32,7 @@ func (_ RFC) Handle(conn *irc.Conn, line *irc.Line) {
}
}
-func (_ RFC) Help() string {
+func (RFC) Help() string {
return "search rfc by keyword (msg privat to see all matches)"
}