aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick H. Lauke <[email protected]>2018-02-14 01:06:36 +0000
committerGitHub <[email protected]>2018-02-14 01:06:36 +0000
commitcd7f252bdbf81b7a885099e72ab6766dc4783b72 (patch)
tree5c7ebc215292a9e20a9764f923ce16e137830750
parent27e670a4c3dc2bedba75e76f0b87e6f83dde8219 (diff)
downloadbootstrap-cd7f252bdbf81b7a885099e72ab6766dc4783b72.tar.xz
bootstrap-cd7f252bdbf81b7a885099e72ab6766dc4783b72.zip
Reword alert and list group text to avoid "a/an" problems
Closes https://github.com/twbs/bootstrap/issues/25611
-rw-r--r--docs/4.0/components/alerts.md4
-rw-r--r--docs/4.0/components/list-group.md4
2 files changed, 4 insertions, 4 deletions
diff --git a/docs/4.0/components/alerts.md b/docs/4.0/components/alerts.md
index 4ad1d0dea..20543f06f 100644
--- a/docs/4.0/components/alerts.md
+++ b/docs/4.0/components/alerts.md
@@ -13,7 +13,7 @@ Alerts are available for any length of text, as well as an optional dismiss butt
{% example html %}
{% for color in site.data.theme-colors %}
<div class="alert alert-{{ color.name }}" role="alert">
- This is a {{ color.name }} alert—check it out!
+ A simple {{ color.name }} alert—check it out!
</div>{% endfor %}
{% endexample %}
@@ -27,7 +27,7 @@ Use the `.alert-link` utility class to quickly provide matching colored links wi
{% example html %}
{% for color in site.data.theme-colors %}
<div class="alert alert-{{ color.name }}" role="alert">
- This is a {{ color.name }} alert with <a href="#" class="alert-link">an example link</a>. Give it a click if you like.
+ A simple {{ color.name }} alert with <a href="#" class="alert-link">an example link</a>. Give it a click if you like.
</div>{% endfor %}
{% endexample %}
diff --git a/docs/4.0/components/list-group.md b/docs/4.0/components/list-group.md
index 1110eadd6..67bd75b3b 100644
--- a/docs/4.0/components/list-group.md
+++ b/docs/4.0/components/list-group.md
@@ -103,7 +103,7 @@ Use contextual classes to style list items with a stateful background and color.
<li class="list-group-item">Dapibus ac facilisis in</li>
{% for color in site.data.theme-colors %}
- <li class="list-group-item list-group-item-{{ color.name }}">This is a {{ color.name }} list group item</li>{% endfor %}
+ <li class="list-group-item list-group-item-{{ color.name }}">A simple {{ color.name }} list group item</li>{% endfor %}
</ul>
{% endexample %}
@@ -114,7 +114,7 @@ Contextual classes also work with `.list-group-item-action`. Note the addition o
<a href="#" class="list-group-item list-group-item-action">Dapibus ac facilisis in</a>
{% for color in site.data.theme-colors %}
- <a href="#" class="list-group-item list-group-item-action list-group-item-{{ color.name }}">This is a {{ color.name }} list group item</a>{% endfor %}
+ <a href="#" class="list-group-item list-group-item-action list-group-item-{{ color.name }}">A simple {{ color.name }} list group item</a>{% endfor %}
</div>
{% endexample %}