]> Cypherpunks repositories - gostls13.git/commitdiff
builtin: remove errant spaces
authorAndrew Gerrand <adg@golang.org>
Thu, 3 Nov 2011 03:52:38 +0000 (14:52 +1100)
committerAndrew Gerrand <adg@golang.org>
Thu, 3 Nov 2011 03:52:38 +0000 (14:52 +1100)
R=golang-dev, r
CC=golang-dev
https://golang.org/cl/5337041

src/pkg/builtin/builtin.go

index 0ca9094c9608daf802f63b8b0f4efa5ab273b511..5a7aaf364db82d71a5e91ef7177b889d0e5336e5 100644 (file)
@@ -13,7 +13,7 @@ package builtin
 // bool is the set of boolean values, true and false.
 type bool bool
 
-// uint8 is the set of all unsigned  8-bit integers.
+// uint8 is the set of all unsigned 8-bit integers.
 // Range: 0 through 255.
 type uint8 uint8
 
@@ -29,7 +29,7 @@ type uint32 uint32
 // Range: 0 through 18446744073709551615.
 type uint64 uint64
 
-// int8 is the set of all signed  8-bit integers.
+// int8 is the set of all signed 8-bit integers.
 // Range: -128 through 127.
 type int8 int8