From: David Symonds Date: Mon, 21 Feb 2011 23:12:18 +0000 (+1100) Subject: testing: Fix typo on Logf doc comment. X-Git-Tag: weekly.2011-02-24~50 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=1634390fb15138268926c3d759f2ad26354eaad9;p=gostls13.git testing: Fix typo on Logf doc comment. R=rsc, r2 CC=golang-dev https://golang.org/cl/4167064 --- diff --git a/src/pkg/testing/testing.go b/src/pkg/testing/testing.go index 977252baea..cc31451914 100644 --- a/src/pkg/testing/testing.go +++ b/src/pkg/testing/testing.go @@ -92,7 +92,7 @@ func (t *T) FailNow() { // and records the text in the error log. func (t *T) Log(args ...interface{}) { t.errors += "\t" + tabify(fmt.Sprintln(args...)) } -// Log formats its arguments according to the format, analogous to Printf(), +// Logf formats its arguments according to the format, analogous to Printf(), // and records the text in the error log. func (t *T) Logf(format string, args ...interface{}) { t.errors += "\t" + tabify(fmt.Sprintf(format, args...))