From b935728a17da9fc2451ae6296d8e1ac8e592f76f Mon Sep 17 00:00:00 2001 From: Roger Peppe Date: Thu, 10 Feb 2011 11:01:05 -0800 Subject: [PATCH] fmt: fix minor typo R=r, r2 CC=golang-dev https://golang.org/cl/4187041 --- src/pkg/fmt/scan.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pkg/fmt/scan.go b/src/pkg/fmt/scan.go index ec80ec2859..53d88d574d 100644 --- a/src/pkg/fmt/scan.go +++ b/src/pkg/fmt/scan.go @@ -30,7 +30,7 @@ type runeUnreader interface { type ScanState interface { // GetRune reads the next rune (Unicode code point) from the input. GetRune() (rune int, err os.Error) - // UngetRune causes the next call to GetRune to return the rune. + // UngetRune causes the next call to GetRune to return the same rune. UngetRune() // Width returns the value of the width option and whether it has been set. // The unit is Unicode code points.