From: Kai Backman Date: Thu, 13 Aug 2009 22:14:41 +0000 (-0700) Subject: fix typo X-Git-Tag: weekly.2009-11-06~876 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=8149a8c666a79e2dc8898fcc8debbc2bc3626638;p=gostls13.git fix typo R=rsc APPROVED=rsc DELTA=1 (0 added, 0 deleted, 1 changed) OCL=33209 CL=33227 --- diff --git a/src/pkg/log/log.go b/src/pkg/log/log.go index 8fcd731900..c109efa834 100644 --- a/src/pkg/log/log.go +++ b/src/pkg/log/log.go @@ -184,7 +184,7 @@ func Exitf(format string, v ...) { exit.Output(2, fmt.Sprintf(format, v)) } -// Crash is equivalent to Stderrf() followed by a call to panic(). +// Crash is equivalent to Stderr() followed by a call to panic(). func Crash(v ...) { crash.Output(2, fmt.Sprintln(v)) }