about summary refs log tree commit diff
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2013-02-19 00:08:31 -0800
committerbors <bors@rust-lang.org>2013-02-19 00:08:31 -0800
commit67ee95e943163d8d3dad439bfb0ce94e3e9c9aa4 (patch)
tree5a13d5ed3103924777353ce4b5d04e830ee98f64
parent28e8542c549a3f1d8b672a0398869472ccd2e780 (diff)
parentb29476374ba90573a117ae2c3cac7c3183b69f33 (diff)
downloadrust-67ee95e943163d8d3dad439bfb0ce94e3e9c9aa4.tar.gz
rust-67ee95e943163d8d3dad439bfb0ce94e3e9c9aa4.zip
auto merge of #5029 : mcpherrinm/rust/master, r=catamorphism
Added a newline to make header be a header.

(re-did pull request because I screwed up the last one)
-rw-r--r--doc/rust.md1
1 files changed, 1 insertions, 0 deletions
diff --git a/doc/rust.md b/doc/rust.md
index e63fb3980a1..975e4bbb8a2 100644
--- a/doc/rust.md
+++ b/doc/rust.md
@@ -1117,6 +1117,7 @@ a = Cat{ name: ~"Spotty", weight: 2.7 };
 
 In this example, `Cat` is a _struct-like enum variant_,
 whereas `Dog` is simply called an enum variant.
+
 ### Constants
 
 ~~~~~~~~ {.ebnf .gram}