about summary refs log tree commit diff
path: root/src/doc/reference
diff options
context:
space:
mode:
authorCorey Farwell <coreyf@rwell.org>2017-02-20 23:09:56 -0500
committerSteve Klabnik <steve@steveklabnik.com>2017-02-21 14:01:29 -0500
commitfd272161cbbbfc88ded56ae796e471f0ba3da8d9 (patch)
treeddeca78fffb7fc73017ea0c5a7b24201b69208ec /src/doc/reference
parentbb6b578e0b7d24e0cbf4993dea647c278509135a (diff)
downloadrust-fd272161cbbbfc88ded56ae796e471f0ba3da8d9.tar.gz
rust-fd272161cbbbfc88ded56ae796e471f0ba3da8d9.zip
String table productions
Diffstat (limited to 'src/doc/reference')
-rw-r--r--src/doc/reference/src/string-table-productions.md14
1 files changed, 8 insertions, 6 deletions
diff --git a/src/doc/reference/src/string-table-productions.md b/src/doc/reference/src/string-table-productions.md
index 29efc46a3ae..4e9742e3bbb 100644
--- a/src/doc/reference/src/string-table-productions.md
+++ b/src/doc/reference/src/string-table-productions.md
@@ -1,16 +1,18 @@
 # String table productions
 
 Some rules in the grammar &mdash; notably [unary
-operators](#unary-operator-expressions), [binary
-operators](#binary-operator-expressions), and [keywords][keywords] &mdash; are
+operators], [binary operators], and [keywords][keywords] &mdash; are
 given in a simplified form: as a listing of a table of unquoted, printable
 whitespace-separated strings. These cases form a subset of the rules regarding
-the [token](#tokens) rule, and are assumed to be the result of a
+the [token][tokens] rule, and are assumed to be the result of a
 lexical-analysis phase feeding the parser, driven by a DFA, operating over the
 disjunction of all such string table entries.
 
-[keywords]: grammar.html#keywords
-
 When such a string enclosed in double-quotes (`"`) occurs inside the grammar,
 it is an implicit reference to a single member of such a string table
-production. See [tokens](#tokens) for more information.
+production. See [tokens] for more information.
+
+[binary operators]: expressions.html#binary-operator-expressions
+[keywords]: ../grammar.html#keywords
+[tokens]: tokens.html
+[unary operators]: expressions.html#unary-operator-expressions
\ No newline at end of file