From: Robert Griesemer Date: Thu, 24 Sep 2020 19:44:19 +0000 (-0700) Subject: spec: better variable name for operator example X-Git-Tag: go1.16beta1~935 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=23cc16cdd2fbda37dd54de944462f57795da7bd2;p=gostls13.git spec: better variable name for operator example Suggested by @yaxinlx. Fixes #41612. Change-Id: I98b9968a95d090ee3c67ff02678e1874e6d98c33 Reviewed-on: https://go-review.googlesource.com/c/go/+/257159 Trust: Robert Griesemer Reviewed-by: Rob Pike Reviewed-by: Ian Lance Taylor --- diff --git a/doc/go_spec.html b/doc/go_spec.html index 154bdbfeaf..e9e9e42130 100644 --- a/doc/go_spec.html +++ b/doc/go_spec.html @@ -1,6 +1,6 @@ @@ -3646,7 +3646,7 @@ For instance, x / y * z is the same as (x / y) * z. x <= f() ^a >> b f() || g() -x == y+1 && <-chanPtr > 0 +x == y+1 && <-chanInt > 0