aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/go/types/type.go2
-rw-r--r--src/math/big/float.go2
-rw-r--r--src/text/scanner/scanner.go2
3 files changed, 3 insertions, 3 deletions
diff --git a/src/go/types/type.go b/src/go/types/type.go
index 1df8b45b28..b93039abd8 100644
--- a/src/go/types/type.go
+++ b/src/go/types/type.go
@@ -360,7 +360,7 @@ type Chan struct {
// A ChanDir value indicates a channel direction.
type ChanDir int
-// The direction of a channel is indicated by one of the following constants.
+// The direction of a channel is indicated by one of these constants.
const (
SendRecv ChanDir = iota
SendOnly
diff --git a/src/math/big/float.go b/src/math/big/float.go
index d7aa8953c4..ef74fec513 100644
--- a/src/math/big/float.go
+++ b/src/math/big/float.go
@@ -124,7 +124,7 @@ const (
// rounding error is described by the Float's Accuracy.
type RoundingMode byte
-// The following rounding modes are supported.
+// These constants define supported rounding modes.
const (
ToNearestEven RoundingMode = iota // == IEEE 754-2008 roundTiesToEven
ToNearestAway // == IEEE 754-2008 roundTiesToAway
diff --git a/src/text/scanner/scanner.go b/src/text/scanner/scanner.go
index 3ab01edd24..0155800f34 100644
--- a/src/text/scanner/scanner.go
+++ b/src/text/scanner/scanner.go
@@ -73,7 +73,7 @@ const (
GoTokens = ScanIdents | ScanFloats | ScanChars | ScanStrings | ScanRawStrings | ScanComments | SkipComments
)
-// The result of Scan is one of the following tokens or a Unicode character.
+// The result of Scan is one of these tokens or a Unicode character.
const (
EOF = -(iota + 1)
Ident