From: Emil Hessman Date: Sat, 17 Aug 2013 22:10:00 +0000 (+1000) Subject: net/textproto: replace '3-digit' with 'three-digit' X-Git-Tag: go1.2rc2~509 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=20eb4cba377174276e2e67284080cd89d5abfac3;p=gostls13.git net/textproto: replace '3-digit' with 'three-digit' A matter on form in documentation. R=golang-dev, r CC=golang-dev https://golang.org/cl/13087043 --- diff --git a/src/pkg/net/textproto/reader.go b/src/pkg/net/textproto/reader.go index 8eda4dffdd..56ece5b087 100644 --- a/src/pkg/net/textproto/reader.go +++ b/src/pkg/net/textproto/reader.go @@ -203,7 +203,7 @@ func parseCodeLine(line string, expectCode int) (code int, continued bool, messa // ReadCodeLine reads a response code line of the form // code message -// where code is a 3-digit status code and the message +// where code is a three-digit status code and the message // extends to the rest of the line. An example of such a line is: // 220 plan9.bell-labs.com ESMTP // @@ -231,7 +231,7 @@ func (r *Reader) ReadCodeLine(expectCode int) (code int, message string, err err // ... // code message line n // -// where code is a 3-digit status code. The first line starts with the +// where code is a three-digit status code. The first line starts with the // code and a hyphen. The response is terminated by a line that starts // with the same code followed by a space. Each line in message is // separated by a newline (\n).