From 0e7aad8b8d167f20925499b3a90b2bffdc32d469 Mon Sep 17 00:00:00 2001
From: James Holland <james@turnupworks.com>
Date: Fri, 26 Jul 2013 09:43:05 -0400
Subject: [PATCH] Update typo css.html move double class .form-control from
 label in example mark up to input

missed the double class in label in recent commit #8621
---
 css.html | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/css.html b/css.html
index 3319de61a9..05defcae1c 100644
--- a/css.html
+++ b/css.html
@@ -1278,9 +1278,9 @@ For example, <code>&lt;section&gt;</code> should be wrapped as inline.
 {% highlight html %}
 <form class="form-horizontal">
   <div class="row">
-    <label for="inputEmail" class="form-control" class="col-lg-2 control-label">Email</label>
+    <label for="inputEmail" class="col-lg-2 control-label">Email</label>
     <div class="col-lg-10">
-      <input type="text" id="inputEmail" placeholder="Email">
+      <input type="text" class="form-control" id="inputEmail" placeholder="Email">
     </div>
   </div>
   <div class="row">