]> git.ipfire.org Git - thirdparty/bootstrap.git/commitdiff
Rename placeholders according to the classes specified 17670/head
authorpetetnt <pete.a.nykanen@gmail.com>
Tue, 22 Sep 2015 08:31:04 +0000 (11:31 +0300)
committerpetetnt <pete.a.nykanen@gmail.com>
Tue, 22 Sep 2015 08:31:04 +0000 (11:31 +0300)
docs/components/forms.md

index 90f3e38dcf053d448acd7bb0f6a30a8781d8f782..ea8d3ee54eca4f2f0531ee1cb96db8421065001c 100644 (file)
@@ -484,9 +484,9 @@ Add the `readonly` boolean attribute on an input to prevent modification of the
 Set heights using classes like `.form-control-lg`, and set widths using grid column classes like `.col-lg-*`.
 
 {% example html %}
-<input class="form-control form-control-lg" type="text" placeholder=".input-lg">
+<input class="form-control form-control-lg" type="text" placeholder=".form-control-lg">
 <input class="form-control" type="text" placeholder="Default input">
-<input class="form-control form-control-sm" type="text" placeholder=".input-sm">
+<input class="form-control form-control-sm" type="text" placeholder=".form-control-sm">
 {% endexample %}
 
 {% example html %}