1
0
mirror of https://github.com/golang/go synced 2024-11-21 18:14:42 -07:00

testing: Fix comment typo

R=iant, rsc
CC=golang-dev
https://golang.org/cl/204068
This commit is contained in:
Evan Shaw 2010-02-07 23:11:54 -08:00 committed by Ian Lance Taylor
parent d5841cac45
commit abe6a5b0f7

View 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.
//