From d56026d489fb8db66c2db6aa0d222f1a3fa9261f Mon Sep 17 00:00:00 2001 From: Chris Rebert <github@rebertia.com> Date: Fri, 4 Apr 2014 10:25:22 -0700 Subject: [PATCH] fix grammar in "Underlined text" example --- docs/_includes/css/type.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/_includes/css/type.html b/docs/_includes/css/type.html index 2ea0465199..da81d7414a 100644 --- a/docs/_includes/css/type.html +++ b/docs/_includes/css/type.html @@ -146,10 +146,10 @@ You can use the mark tag to <mark>highlight</mark> text. <h3>Underlined text</h3> <p>To underline text use the <code><u></code> tag.</p> <div class="bs-example"> - <p><u>This line of text is will render as underlined</u></p> + <p><u>This line of text will render as underlined</u></p> </div> {% highlight html %} -<u>This line of text is will render as underlined</u> +<u>This line of text will render as underlined</u> {% endhighlight %} <p>Make use of HTML's default emphasis tags with lightweight styles.</p> -- GitLab