From f5c85d706b7d392964135116a804562e4094a89c Mon Sep 17 00:00:00 2001 From: Jim Gregory Date: Thu, 15 Nov 2018 06:47:06 -0600 Subject: [PATCH] fix typos in form documentation --- docs/doc-fragments/formsAndInput.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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>