Commit 1c530d5d authored by Andrew Gerrand's avatar Andrew Gerrand

builtin: remove errant spaces

R=golang-dev, r
CC=golang-dev
https://golang.org/cl/5337041
parent e4b46424
...@@ -13,7 +13,7 @@ package builtin ...@@ -13,7 +13,7 @@ package builtin
// bool is the set of boolean values, true and false. // bool is the set of boolean values, true and false.
type bool bool 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. // Range: 0 through 255.
type uint8 uint8 type uint8 uint8
...@@ -29,7 +29,7 @@ type uint32 uint32 ...@@ -29,7 +29,7 @@ type uint32 uint32
// Range: 0 through 18446744073709551615. // Range: 0 through 18446744073709551615.
type uint64 uint64 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. // Range: -128 through 127.
type int8 int8 type int8 int8
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment