]> git.ipfire.org Git - thirdparty/bootstrap.git/commitdiff
Fix capitalization/singular of comments in helper class docs
authorQuy Ton <quy@fluxbb.org>
Wed, 18 Feb 2015 19:16:49 +0000 (11:16 -0800)
committerChris Rebert <code@rebertia.com>
Sat, 21 Feb 2015 04:02:20 +0000 (20:02 -0800)
Closes #15839 by merging a tweaked version of it.

docs/_includes/css/helpers.html

index 69dd3f95cfe14a1cef91f143c1dd3893edb1e790..40bb9d58bd154082ab594b72e4657c91a6f97c62 100644 (file)
 <div class="center-block">...</div>
 {% 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();
 }
   }
 }
 
-// Usage as a Mixin
+// Usage as a mixin
 .element {
   .clearfix();
 }
 <a class="sr-only sr-only-focusable" href="#content">Skip to main content</a>
 {% endhighlight %}
 {% highlight scss %}
-// Usage as a Mixin
+// Usage as a mixin
 .skip-navigation {
   .sr-only();
   .sr-only-focusable();
 <h1 class="text-hide">Custom heading</h1>
 {% endhighlight %}
 {% highlight scss %}
-// Usage as a Mixin
+// Usage as a mixin
 .heading {
   .text-hide();
 }