Updated CommonMistakes (markdown)

Rich Parrish 2018-06-14 10:55:55 -07:00
parent e6dc812091
commit b1ebeff743

@ -10,7 +10,7 @@ When new programmers start using Go or when old Go programmers start using a new
# Using goroutines on loop iterator variables
When iterating in Go, one might atempt to use goroutines to process data in parallel. For example, you might write something like this, using a closure:
When iterating in Go, one might attempt to use goroutines to process data in parallel. For example, you might write something like this, using a closure:
```go
for _, val := range values {