From: Quy Ton Date: Wed, 18 Feb 2015 19:16:49 +0000 (-0800) Subject: Fix capitalization/singular of comments in helper class docs X-Git-Tag: v3.3.4~101 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=074419298eca781ea0cbe3a9988f44f85afb3eef;p=thirdparty%2Fbootstrap.git Fix capitalization/singular of comments in helper class docs Closes #15839 by merging a tweaked version of it. --- diff --git a/docs/_includes/css/helpers.html b/docs/_includes/css/helpers.html index 69dd3f95cf..40bb9d58bd 100644 --- a/docs/_includes/css/helpers.html +++ b/docs/_includes/css/helpers.html @@ -109,14 +109,14 @@
...
{% endhighlight %} {% highlight scss %} -// Classes +// Class .center-block { display: block; margin-left: auto; margin-right: auto; } -// Usage as mixins +// Usage as a mixin .element { .center-block(); } @@ -142,7 +142,7 @@ } } -// Usage as a Mixin +// Usage as a mixin .element { .clearfix(); } @@ -186,7 +186,7 @@ Skip to main content {% endhighlight %} {% highlight scss %} -// Usage as a Mixin +// Usage as a mixin .skip-navigation { .sr-only(); .sr-only-focusable(); @@ -200,7 +200,7 @@

Custom heading

{% endhighlight %} {% highlight scss %} -// Usage as a Mixin +// Usage as a mixin .heading { .text-hide(); }