diff --git a/docs/doc-fragments/formsAndInput.js b/docs/doc-fragments/formsAndInput.js index 4f0e068..20f48ec 100644 --- a/docs/doc-fragments/formsAndInput.js +++ b/docs/doc-fragments/formsAndInput.js @@ -54,16 +54,16 @@ module.exports = { modifiers: [], dos: [ { - description: 'Form inputs are inline by defaut, however you can combine forms with the grid system to create aligned forms.', + description: 'Form inputs are inline by default, however you can combine forms with the grid system to create aligned forms.', sample: `
<form>
   <fieldset>
     <legend>Simple form</legend>
-    <div> class="row">
-      <div> class="col-sm-12 col-md-6">
+    <div class="row">
+      <div class="col-sm-12 col-md-6">
         <label for="username">Username</label>
         <input type="text" id="Username" placeholder="Username"/>
       </div>
-      <div> class="col-sm-12 col-md-6">
+      <div class="col-sm-12 col-md-6">
         <label for="password">Password</label>
         <input type="password" id="password" placeholder="Password"/>
       </div>