Commit f82097f5 authored by Robin Eklind's avatar Robin Eklind Committed by Robert Griesemer

spec: Add link to rune literals from string literals when talking about escape sequences.

LGTM=gri
R=golang-codereviews, gobot, gri
CC=golang-codereviews
https://golang.org/cl/140750043
parent 97f8386a
...@@ -479,7 +479,7 @@ Interpreted string literals are character sequences between double ...@@ -479,7 +479,7 @@ Interpreted string literals are character sequences between double
quotes <code>&quot;&quot;</code>. The text between the quotes, quotes <code>&quot;&quot;</code>. The text between the quotes,
which may not contain newlines, forms the which may not contain newlines, forms the
value of the literal, with backslash escapes interpreted as they value of the literal, with backslash escapes interpreted as they
are in rune literals (except that <code>\'</code> is illegal and are in <a href="#Rune_literals">rune literals</a> (except that <code>\'</code> is illegal and
<code>\"</code> is legal), with the same restrictions. <code>\"</code> is legal), with the same restrictions.
The three-digit octal (<code>\</code><i>nnn</i>) The three-digit octal (<code>\</code><i>nnn</i>)
and two-digit hexadecimal (<code>\x</code><i>nn</i>) escapes represent individual and two-digit hexadecimal (<code>\x</code><i>nn</i>) escapes represent individual
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment