about summary refs log tree commit diff
path: root/src/doc/reference.md
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2014-10-14 04:02:48 +0000
committerbors <bors@rust-lang.org>2014-10-14 04:02:48 +0000
commita1e2eb0395941f5ca79cd59c8ab0a9f3133a2df0 (patch)
tree2782a6efa84382e234077244930b2d78d54ce7ee /src/doc/reference.md
parent1c3ddd297128a96f72be09bddf138e4e603a7aa1 (diff)
parent2e2d681d88d99c4bb7033b852f98d6f979af5672 (diff)
downloadrust-a1e2eb0395941f5ca79cd59c8ab0a9f3133a2df0.tar.gz
rust-a1e2eb0395941f5ca79cd59c8ab0a9f3133a2df0.zip
auto merge of #18017 : alexcrichton/rust/rollup, r=alexcrichton
Diffstat (limited to 'src/doc/reference.md')
-rw-r--r--src/doc/reference.md18
1 files changed, 1 insertions, 17 deletions
diff --git a/src/doc/reference.md b/src/doc/reference.md
index 131637948c8..3c4b973002e 100644
--- a/src/doc/reference.md
+++ b/src/doc/reference.md
@@ -185,40 +185,24 @@ grammar as double-quoted strings. Other tokens have exact rules given.
 
 ### Keywords
 
-The keywords are the following strings, organized by first letter:
+<p id="keyword-table-marker">The keywords are the following strings, organized by first letter:</p>
 
-<div id="keywords">
 |          |        |        |       |
 |----------|--------|--------|-------|
 | as       |        |        |       |
-|----------|--------|--------|-------|
 | box      | break  |        |       |
-|----------|--------|--------|-------|
 | continue | crate  |        |       |
-|----------|--------|--------|-------|
 | else     | enum   | extern |       |
-|----------|--------|--------|-------|
 | false    | fn     | for    |       |
-|----------|--------|--------|-------|
 | if       | impl   | in     |       |
-|----------|--------|--------|-------|
 | let      | loop   |        |       |
-|----------|--------|--------|-------|
 | match    | mod    | mut    |       |
-|----------|--------|--------|-------|
 | priv     | proc   | pub    |       |
-|----------|--------|--------|-------|
 | ref      | return |        |       |
-|----------|--------|--------|-------|
 | self     | static | struct | super |
-|----------|--------|--------|-------|
 | trait    | true   | type   |       |
-|----------|--------|--------|-------|
 | unsafe   | use    |        |       |
-|----------|--------|--------|-------|
 | while    |        |        |       |
-|----------|--------|--------|-------|
-</div>
 
 Each of these keywords has special meaning in its grammar, and all of them are
 excluded from the `ident` rule.