]> Cypherpunks repositories - gostls13.git/commitdiff
testing: Fix comment typo
authorEvan Shaw <chickencha@gmail.com>
Mon, 8 Feb 2010 07:11:54 +0000 (23:11 -0800)
committerIan Lance Taylor <iant@golang.org>
Mon, 8 Feb 2010 07:11:54 +0000 (23:11 -0800)
R=iant, rsc
CC=golang-dev
https://golang.org/cl/204068

src/pkg/testing/testing.go

index f917004e87c0e0985a1d494dcf7cd743132bdb32..5bdbd8aa270dbdd4cde61e7069681d2320e39fe9 100644 (file)
@@ -6,7 +6,7 @@
 // It is intended to be used in concert with the ``gotest'' utility, which automates
 // execution of any function of the form
 //     func TestXxx(*testing.T)
-// where Xxx can by any alphanumeric string (but the first letter must not be in
+// where Xxx can be any alphanumeric string (but the first letter must not be in
 // [a-z]) and serves to identify the test routine.
 // These TestXxx routines should be declared within the package they are testing.
 //