Skip to content

Commit ff6ad65

Browse files
committed
Fix missing nil
1 parent c6e2595 commit ff6ad65

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/send.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66

77
func main() {
88
err := hare.Send("3000", "Hey")
9-
if err != {
9+
if err != nil {
1010
panic(err)
1111
}
1212
}

0 commit comments

Comments
 (0)