aboutsummaryrefslogtreecommitdiff
path: root/src/fmt
diff options
context:
space:
mode:
authorBrad Fitzpatrick <bradfitz@golang.org>2016-11-17 14:39:11 +0000
committerBrad Fitzpatrick <bradfitz@golang.org>2016-11-17 15:29:40 +0000
commit7534a72ea8b4ebb71cd8525029717fddd46c9dc6 (patch)
treea17d4399856b1a4f7930970252eaf0a2f6c63d85 /src/fmt
parent03ca047dd334f6018f06f7fc9a7a4e2608b1f8d3 (diff)
downloadgo-7534a72ea8b4ebb71cd8525029717fddd46c9dc6.tar.xz
fmt: fix typo
Fixes #17955 Change-Id: Ia1a04796353c83358a38a6b63f2a0cd3c6926f09 Reviewed-on: https://go-review.googlesource.com/33338 Reviewed-by: Rob Pike <r@golang.org>
Diffstat (limited to 'src/fmt')
-rw-r--r--src/fmt/format.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fmt/format.go b/src/fmt/format.go
index 023647501a..f77048338a 100644
--- a/src/fmt/format.go
+++ b/src/fmt/format.go
@@ -46,7 +46,7 @@ type fmt struct {
wid int // width
prec int // precision
- // intbuf is large enought to store %b of an int64 with a sign and
+ // intbuf is large enough to store %b of an int64 with a sign and
// avoids padding at the end of the struct on 32 bit architectures.
intbuf [68]byte
}