git » go-net » commit 2a35e68

context: correct spelling of TODO in comment

author Ian Lance Taylor
2016-05-06 19:47:26 UTC
committer Brad Fitzpatrick
2016-05-06 21:07:50 UTC
parent 7e42c0e1329bb108f7376a7618a2871ab90f1c4d

context: correct spelling of TODO in comment

Change-Id: I62bfc730643cb0756fc67f3c5cf73029b75c07bb
Reviewed-on: https://go-review.googlesource.com/22884
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>

context/context_test.go +1 -1

diff --git a/context/context_test.go b/context/context_test.go
index 4209b6f..9554dcf 100644
--- a/context/context_test.go
+++ b/context/context_test.go
@@ -403,7 +403,7 @@ func TestAllocs(t *testing.T) {
 		limit := test.limit
 		if runtime.Compiler == "gccgo" {
 			// gccgo does not yet do escape analysis.
-			// TOOD(iant): Remove this when gccgo does do escape analysis.
+			// TODO(iant): Remove this when gccgo does do escape analysis.
 			limit = test.gccgoLimit
 		}
 		if n := testing.AllocsPerRun(100, test.f); n > limit {