From b29476374ba90573a117ae2c3cac7c3183b69f33 Mon Sep 17 00:00:00 2001
From: Matthew McPherrin <matthew@mcpherrin.ca>
Date: Mon, 18 Feb 2013 21:45:39 -0500
Subject: [PATCH] Missing newline causing title to not be a title

---
 doc/rust.md | 1 +
 1 file changed, 1 insertion(+)

diff --git a/doc/rust.md b/doc/rust.md
index 14efa3fcead8..06840fd0215a 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}