2
0
mirror of https://github.com/tenrok/bootstrap.git synced 2026-06-11 18:02:28 +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
@@ -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 %}