mirror of
https://github.com/golang/go
synced 2024-11-22 22:20:03 -07:00
spec: use consistent capitalization for rune literal hex constants
Fixes #47368 Change-Id: I2f65c0008658532123f04d08e99e5d083f33461a Reviewed-on: https://go-review.googlesource.com/c/go/+/337234 Trust: Ian Lance Taylor <iant@golang.org> Trust: Robert Griesemer <gri@golang.org> Reviewed-by: Emmanuel Odeke <emmanuel@orijtech.com> Reviewed-by: Robert Griesemer <gri@golang.org>
This commit is contained in:
parent
0914646ab9
commit
849b791129
@ -1,6 +1,6 @@
|
|||||||
<!--{
|
<!--{
|
||||||
"Title": "The Go Programming Language Specification",
|
"Title": "The Go Programming Language Specification",
|
||||||
"Subtitle": "Version of Jul 1, 2021",
|
"Subtitle": "Version of Jul 24, 2021",
|
||||||
"Path": "/ref/spec"
|
"Path": "/ref/spec"
|
||||||
}-->
|
}-->
|
||||||
|
|
||||||
@ -490,8 +490,8 @@ After a backslash, certain single-character escapes represent special values:
|
|||||||
\n U+000A line feed or newline
|
\n U+000A line feed or newline
|
||||||
\r U+000D carriage return
|
\r U+000D carriage return
|
||||||
\t U+0009 horizontal tab
|
\t U+0009 horizontal tab
|
||||||
\v U+000b vertical tab
|
\v U+000B vertical tab
|
||||||
\\ U+005c backslash
|
\\ U+005C backslash
|
||||||
\' U+0027 single quote (valid escape only within rune literals)
|
\' U+0027 single quote (valid escape only within rune literals)
|
||||||
\" U+0022 double quote (valid escape only within string literals)
|
\" U+0022 double quote (valid escape only within string literals)
|
||||||
</pre>
|
</pre>
|
||||||
|
Loading…
Reference in New Issue
Block a user