diff --git a/examples/atomic-counters/atomic-counters.go b/examples/atomic-counters/atomic-counters.go index 25fa17e..18acd59 100644 --- a/examples/atomic-counters/atomic-counters.go +++ b/examples/atomic-counters/atomic-counters.go @@ -46,6 +46,3 @@ func main() { opsFinal := atomic.LoadUint64(&ops) fmt.Println("ops:", opsFinal) } - -// Next we'll look at another approach to managing state: -// mutexes.