From 3c61a319d76daa5ecd4899d509bd015c30e7cd1b Mon Sep 17 00:00:00 2001
From: Gant Laborde <gantman@gmail.com>
Date: Thu, 23 Oct 2014 16:34:52 -0500
Subject: [PATCH] fixing rendering mistake

greater than symbol can't be html encoded on the highlight, it just looks weird.
---
 docs/_includes/css/grid.html | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/_includes/css/grid.html b/docs/_includes/css/grid.html
index 429ef90f94..d480cc4f35 100644
--- a/docs/_includes/css/grid.html
+++ b/docs/_includes/css/grid.html
@@ -267,7 +267,7 @@
 {% highlight html %}
 <div class="row">
   <div class="col-xs-9">.col-xs-9</div>
-  <div class="col-xs-4">.col-xs-4<br>Since 9 + 4 = 13 &gt; 12, this 4-column-wide div gets wrapped onto a new line as one contiguous unit.</div>
+  <div class="col-xs-4">.col-xs-4<br>Since 9 + 4 = 13 > 12, this 4-column-wide div gets wrapped onto a new line as one contiguous unit.</div>
   <div class="col-xs-6">.col-xs-6<br>Subsequent columns continue along the new line.</div>
 </div>
 {% endhighlight %}
-- 
GitLab