Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Rebert <github@chrisrebert.com>2015-09-22 12:30:30 +0300
committerChris Rebert <github@chrisrebert.com>2015-09-22 12:30:30 +0300
commitc21679ceeb0b313f5a87a3de5e7365c6f59f428d (patch)
treea3814a00f63ac153b156df512c012b9a27e0f42a
parent81435adff855779dba5e08f9d4b198d5c9658e45 (diff)
parentc0b5aba3fcd4611c224db04c1a0d3ff91c930a8a (diff)
Merge pull request #17670 from petetnt/petetnt/docs-fix-2
Rename placeholders in forms.md according to the classes specified
-rw-r--r--docs/components/forms.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/components/forms.md b/docs/components/forms.md
index 90f3e38dcf..ea8d3ee54e 100644
--- a/docs/components/forms.md
+++ b/docs/components/forms.md
@@ -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 %}