aboutsummaryrefslogtreecommitdiff
path: root/docs/components
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2016-05-08 13:38:34 -0700
committerMark Otto <[email protected]>2016-05-08 13:38:34 -0700
commitb2dd8e16946c839b24ea1327c65732222e03c2d2 (patch)
tree0a7d8e537d86dacd161582277a02fbbd747047f6 /docs/components
parent8b8f5d0ca607f041c9c0cf4de0b7dc7f46b7396d (diff)
downloadbootstrap-b2dd8e16946c839b24ea1327c65732222e03c2d2.tar.xz
bootstrap-b2dd8e16946c839b24ea1327c65732222e03c2d2.zip
fix validation of dupe ids
Diffstat (limited to 'docs/components')
-rw-r--r--docs/components/forms.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/components/forms.md b/docs/components/forms.md
index 042796c05..5025e2358 100644
--- a/docs/components/forms.md
+++ b/docs/components/forms.md
@@ -364,19 +364,19 @@ Be sure to add `.col-form-label` to your `<label>`s as well so they're verticall
<div class="col-sm-10">
<div class="radio">
<label>
- <input type="radio" name="optionsRadios" id="optionsRadios1" value="option1" checked>
+ <input type="radio" name="gridRadios" id="gridRadios1" value="option1" checked>
Option one is this and that&mdash;be sure to include why it's great
</label>
</div>
<div class="radio">
<label>
- <input type="radio" name="optionsRadios" id="optionsRadios2" value="option2">
+ <input type="radio" name="gridRadios" id="gridRadios1" value="option2">
Option two can be something else and selecting it will deselect option one
</label>
</div>
<div class="radio disabled">
<label>
- <input type="radio" name="optionsRadios" id="optionsRadios3" value="option3" disabled>
+ <input type="radio" name="gridRadios" id="gridRadios3" value="option3" disabled>
Option three is disabled
</label>
</div>