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>
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 @@
 		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 {