From e1fa26026db313463a09289c2105591de33cf7b8 Mon Sep 17 00:00:00 2001 From: DQNEO Date: Mon, 31 May 2021 12:33:28 +0900 Subject: [PATCH] spec: improve wording consistency by eliminating "specifier" The word "specifier" is used once only here and technically not defined. Change-Id: Ifc9f0582f4eb3c3011ba60d8008234de511d4be6 Reviewed-on: https://go-review.googlesource.com/c/go/+/323730 Reviewed-by: Robert Griesemer Trust: Ian Lance Taylor Trust: Robert Griesemer --- doc/go_spec.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/go_spec.html b/doc/go_spec.html index 7a2b3a80f0c..561d44271a2 100644 --- a/doc/go_spec.html +++ b/doc/go_spec.html @@ -4909,7 +4909,7 @@ if x := f(); x < y {

"Switch" statements provide multi-way execution. -An expression or type specifier is compared to the "cases" +An expression or type is compared to the "cases" inside the "switch" to determine which branch to execute.