2
0
mirror of https://github.com/tenrok/bootstrap.git synced 2026-06-14 18:42:30 +03:00

Reword alert and list group text to avoid "a/an" problems

Closes https://github.com/twbs/bootstrap/issues/25611
This commit is contained in:
Patrick H. Lauke
2018-02-14 01:06:36 +00:00
committed by GitHub
parent 27e670a4c3
commit cd7f252bdb
2 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -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 %}