summaryrefslogtreecommitdiff
path: root/blame.go
diff options
context:
space:
mode:
Diffstat (limited to 'blame.go')
-rw-r--r--blame.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/blame.go b/blame.go
index 85059ff..3d86882 100644
--- a/blame.go
+++ b/blame.go
@@ -6,7 +6,7 @@ import (
type Blame struct{}
-func (_ Blame) Handle(conn *irc.Conn, line *irc.Line) {
+func (Blame) Handle(conn *irc.Conn, line *irc.Line) {
src := []string{
"Author: Dimitri Sokolyuk <demon@dim13.org>",
"Source: http://cgit.dim13.org/bot.git",
@@ -17,7 +17,7 @@ func (_ Blame) Handle(conn *irc.Conn, line *irc.Line) {
}
}
-func (_ Blame) Help() string {
+func (Blame) Help() string {
return "Blame author and return link to source code"
}