From: Evan Shaw Date: Mon, 8 Feb 2010 07:11:54 +0000 (-0800) Subject: testing: Fix comment typo X-Git-Tag: weekly.2010-02-17~67 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=abe6a5b0f7012bab63da5a57c2f29fa3cfb42997;p=gostls13.git testing: Fix comment typo R=iant, rsc CC=golang-dev https://golang.org/cl/204068 --- diff --git a/src/pkg/testing/testing.go b/src/pkg/testing/testing.go index f917004e87..5bdbd8aa27 100644 --- a/src/pkg/testing/testing.go +++ b/src/pkg/testing/testing.go @@ -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. //