This commit is contained in:
Cadey Ratio 2018-12-03 17:52:52 -08:00
parent 4d3aeafa9a
commit be05e9f26f
1 changed files with 1 additions and 1 deletions

View File

@ -40,7 +40,7 @@ type Snaker interface {
func grope(id int, thing interface{}) {
switch thing.(type) {
case Trunker:
case Snaker:
log.Printf("man %d: this thing is like a thick snake", id)
```