aboutsummaryrefslogtreecommitdiff
path: root/content/methods/errors.go
diff options
context:
space:
mode:
authorMhd Sulhan <m.shulhan@gmail.com>2016-02-19 02:33:40 +0700
committerShulhan <m.shulhan@gmail.com>2020-01-25 14:13:01 +0700
commit28e25819f06fba23e858335a4f8924cf3d9d4ab2 (patch)
tree8a36c18cfbeb99bd74bdfed58f4e0114915d2b41 /content/methods/errors.go
parent0f1472355b317bdf488d8e6d190e069e91d7f567 (diff)
downloadgolang-id-tour-28e25819f06fba23e858335a4f8924cf3d9d4ab2.tar.xz
Sync with golang/tour@9616eac69404c8d4aab36bf42624b08e2e8dffd2
Translate comment and text in code examples.
Diffstat (limited to 'content/methods/errors.go')
-rw-r--r--content/methods/errors.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/content/methods/errors.go b/content/methods/errors.go
index 7ea0aed..614e03b 100644
--- a/content/methods/errors.go
+++ b/content/methods/errors.go
@@ -20,7 +20,7 @@ func (e *MyError) Error() string {
func run() error {
return &MyError{
time.Now(),
- "it didn't work",
+ "tidak bekerja!",
}
}