From ff85f86877e3639f9a78b5dca27021c33b8cf85c Mon Sep 17 00:00:00 2001
From: Matthew Dempsky
Date: Tue, 20 Oct 2015 15:05:22 -0700
Subject: [PATCH] spec: remove "untyped bool" oxymorons
The proper term is "untyped boolean".
Change-Id: Id871164190a03c64a8a8987b1ad5d8653a21d96e
Reviewed-on: https://go-review.googlesource.com/16135
Reviewed-by: Robert Griesemer
---
doc/go_spec.html | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/doc/go_spec.html b/doc/go_spec.html
index 873c127bdd..ac5ae35745 100644
--- a/doc/go_spec.html
+++ b/doc/go_spec.html
@@ -3638,12 +3638,12 @@ is also allowed and follows from the general rules above.
-const c = 3 < 4 // c is the untyped bool constant true
+const c = 3 < 4 // c is the untyped boolean constant true
type MyBool bool
var x, y int
var (
- // The result of a comparison is an untyped bool.
+ // The result of a comparison is an untyped boolean.
// The usual assignment rules apply.
b3 = x == y // b3 has type bool
b4 bool = x == y // b4 has type bool
--
2.50.0