]> Cypherpunks repositories - gostls13.git/commitdiff
fmt: fix typo
authorBrad Fitzpatrick <bradfitz@golang.org>
Thu, 17 Nov 2016 14:39:11 +0000 (14:39 +0000)
committerBrad Fitzpatrick <bradfitz@golang.org>
Thu, 17 Nov 2016 15:29:40 +0000 (15:29 +0000)
Fixes #17955

Change-Id: Ia1a04796353c83358a38a6b63f2a0cd3c6926f09
Reviewed-on: https://go-review.googlesource.com/33338
Reviewed-by: Rob Pike <r@golang.org>
src/fmt/format.go

index 023647501a0eb66d45d715f7a2f122442c75bc85..f77048338aed034d436e9fe46eb476333d6558dc 100644 (file)
@@ -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
 }