aboutsummaryrefslogtreecommitdiff
path: root/docs/_includes/components/alerts.html
diff options
context:
space:
mode:
authorBas Bosman <[email protected]>2014-06-17 23:35:35 +0200
committerBas Bosman <[email protected]>2014-06-18 00:00:28 +0200
commit128e52ff29be0f275bb92693c9db3ba34d5c003d (patch)
tree6faa955a5bee3178f578bd04b844fdf1625188d7 /docs/_includes/components/alerts.html
parent5b9e2bf1265eb50c0d4105b2eb3da12280c37430 (diff)
downloadbootstrap-128e52ff29be0f275bb92693c9db3ba34d5c003d.tar.xz
bootstrap-128e52ff29be0f275bb92693c9db3ba34d5c003d.zip
Fix dismissible spelling
Diffstat (limited to 'docs/_includes/components/alerts.html')
-rw-r--r--docs/_includes/components/alerts.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/_includes/components/alerts.html b/docs/_includes/components/alerts.html
index f0895b0ed..749ecc2b4 100644
--- a/docs/_includes/components/alerts.html
+++ b/docs/_includes/components/alerts.html
@@ -32,16 +32,16 @@
<div class="alert alert-danger" role="alert">...</div>
{% endhighlight %}
- <h2 id="alerts-dismissable">Dismissable alerts</h2>
- <p>Build on any alert by adding an optional <code>.alert-dismissable</code> and close button.</p>
+ <h2 id="alerts-dismissible">Dismissible alerts</h2>
+ <p>Build on any alert by adding an optional <code>.alert-dismissible</code> and close button.</p>
<div class="bs-example">
- <div class="alert alert-warning alert-dismissable" role="alert">
+ <div class="alert alert-warning alert-dismissible" role="alert">
<button type="button" class="close" data-dismiss="alert"><span aria-hidden="true">&times;</span><span class="sr-only">Close</span></button>
<strong>Warning!</strong> Better check yourself, you're not looking too good.
</div>
</div>
{% highlight html %}
-<div class="alert alert-warning alert-dismissable" role="alert">
+<div class="alert alert-warning alert-dismissible" role="alert">
<button type="button" class="close" data-dismiss="alert"><span aria-hidden="true">&times;</span><span class="sr-only">Close</span></button>
<strong>Warning!</strong> Better check yourself, you're not looking too good.
</div>