diff --git a/README.md b/README.md index 38f287b..bf8ce85 100644 --- a/README.md +++ b/README.md @@ -52,14 +52,14 @@ import ( var sum int32 -func myFunc(i interface{}) error { +func myFunc(i interface{}) { n := i.(int32) atomic.AddInt32(&sum, n) fmt.Printf("run with %d\n", n) return nil } -func demoFunc() error { +func demoFunc() { time.Sleep(10 * time.Millisecond) fmt.Println("Hello World!") return nil diff --git a/README_ZH.md b/README_ZH.md index c3ffa88..966c205 100644 --- a/README_ZH.md +++ b/README_ZH.md @@ -51,14 +51,14 @@ import ( var sum int32 -func myFunc(i interface{}) error { +func myFunc(i interface{}) { n := i.(int32) atomic.AddInt32(&sum, n) fmt.Printf("run with %d\n", n) return nil } -func demoFunc() error { +func demoFunc() { time.Sleep(10 * time.Millisecond) fmt.Println("Hello World!") return nil