From a8cb3d6ab0e9e1480d84a5f75d5e9afb124bf2ba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?xiao=E4=B8=9C=E7=AF=B1?= Date: Thu, 31 May 2018 19:46:59 +0800 Subject: [PATCH] Updated CommonMistakes (markdown) --- CommonMistakes.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CommonMistakes.md b/CommonMistakes.md index 5b10e6f9..c8de220c 100644 --- a/CommonMistakes.md +++ b/CommonMistakes.md @@ -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 also be tempted 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 atempt to use goroutines to process data in parallel. For example, you might write something like this, using a closure: ```go for _, val := range values {