aboutsummaryrefslogtreecommitdiff
path: root/content/methods/type-switches.go
diff options
context:
space:
mode:
authorShulhan <ms@kilabit.info>2018-08-03 04:13:30 +0700
committerShulhan <m.shulhan@gmail.com>2020-01-25 14:14:59 +0700
commit512a0abd505feff1a16e081b81d943bce133908a (patch)
tree013c048586370327602f410ea20c260bbb7ff89a /content/methods/type-switches.go
parent4881e7bd4716a28acbfa5bfd36e5a8e2d40d2242 (diff)
downloadgolang-id-tour-512a0abd505feff1a16e081b81d943bce133908a.tar.xz
Update content with fixes on some typos
Diffstat (limited to 'content/methods/type-switches.go')
-rw-r--r--content/methods/type-switches.go2
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)
}
}