aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Morsing <daniel.morsing@gmail.com>2012-06-13 16:24:46 -0400
committerRuss Cox <rsc@golang.org>2012-06-13 16:24:46 -0400
commit24ee3e4eef7fd39c66fc1a0e6b8f059adb182332 (patch)
treee1fddbd9f79388a9c5a437fdda5b7fcf68aa467d
parent0db7bc2ed832d40b97cbb02c3de7ef1c8d3f7e50 (diff)
downloadgo-24ee3e4eef7fd39c66fc1a0e6b8f059adb182332.tar.gz
go-24ee3e4eef7fd39c66fc1a0e6b8f059adb182332.zip
[release-branch.go1] fmt: fix doc typo
««« backport 76f136192aac fmt: fix doc typo R=golang-dev, rsc CC=golang-dev https://golang.org/cl/6308046 »»»
-rw-r--r--src/pkg/fmt/doc.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pkg/fmt/doc.go b/src/pkg/fmt/doc.go
index 9660370c29..a9b9c9d0c2 100644
--- a/src/pkg/fmt/doc.go
+++ b/src/pkg/fmt/doc.go
@@ -136,7 +136,7 @@
Fscanf and Fscanln read from a specified io.Reader; Sscan,
Sscanf and Sscanln read from an argument string. Scanln,
Fscanln and Sscanln stop scanning at a newline and require that
- the items be followed by one; Sscanf, Fscanf and Sscanf require
+ the items be followed by one; Scanf, Fscanf and Sscanf require
newlines in the input to match newlines in the format; the other
routines treat newlines as spaces.