diff options
Diffstat (limited to 'content/methods/type-switches.go')
| -rw-r--r-- | content/methods/type-switches.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/content/methods/type-switches.go b/content/methods/type-switches.go index 9e0f4be..3424b79 100644 --- a/content/methods/type-switches.go +++ b/content/methods/type-switches.go @@ -11,7 +11,7 @@ func do(i interface{}) { case string: fmt.Printf("%q adalah %v bytes panjangnya\n", v, len(v)) default: - fmt.Printf("Saya tidak tipe %T!\n", v) + fmt.Printf("Saya tidak kenal dengan tipe %T!\n", v) } } |
