diff options
author | Evan Shaw <chickencha@gmail.com> | 2010-02-07 23:11:54 -0800 |
---|---|---|
committer | Evan Shaw <chickencha@gmail.com> | 2010-02-07 23:11:54 -0800 |
commit | 40e0b0113b3e75005f20206a79a581e11210c5d5 (patch) | |
tree | 08f5918a412a5fa53246407c0eb5345c6d709cbe /src/pkg/testing/testing.go | |
parent | 1d08a0f46183dd9b1cab15491955ecdaa252c547 (diff) | |
download | golang-40e0b0113b3e75005f20206a79a581e11210c5d5.tar.gz |
testing: Fix comment typo
R=iant, rsc
CC=golang-dev
http://codereview.appspot.com/204068
Committer: Ian Lance Taylor <iant@golang.org>
Diffstat (limited to 'src/pkg/testing/testing.go')
-rw-r--r-- | src/pkg/testing/testing.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pkg/testing/testing.go b/src/pkg/testing/testing.go index f917004e8..5bdbd8aa2 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. // |