Commit 07441929 authored by Quy Ton's avatar Quy Ton Committed by Chris Rebert

Fix capitalization/singular of comments in helper class docs

Closes #15839 by merging a tweaked version of it.
parent 690abbcc
...@@ -109,14 +109,14 @@ ...@@ -109,14 +109,14 @@
<div class="center-block">...</div> <div class="center-block">...</div>
{% endhighlight %} {% endhighlight %}
{% highlight scss %} {% highlight scss %}
// Classes // Class
.center-block { .center-block {
display: block; display: block;
margin-left: auto; margin-left: auto;
margin-right: auto; margin-right: auto;
} }
// Usage as mixins // Usage as a mixin
.element { .element {
.center-block(); .center-block();
} }
...@@ -142,7 +142,7 @@ ...@@ -142,7 +142,7 @@
} }
} }
// Usage as a Mixin // Usage as a mixin
.element { .element {
.clearfix(); .clearfix();
} }
...@@ -186,7 +186,7 @@ ...@@ -186,7 +186,7 @@
<a class="sr-only sr-only-focusable" href="#content">Skip to main content</a> <a class="sr-only sr-only-focusable" href="#content">Skip to main content</a>
{% endhighlight %} {% endhighlight %}
{% highlight scss %} {% highlight scss %}
// Usage as a Mixin // Usage as a mixin
.skip-navigation { .skip-navigation {
.sr-only(); .sr-only();
.sr-only-focusable(); .sr-only-focusable();
...@@ -200,7 +200,7 @@ ...@@ -200,7 +200,7 @@
<h1 class="text-hide">Custom heading</h1> <h1 class="text-hide">Custom heading</h1>
{% endhighlight %} {% endhighlight %}
{% highlight scss %} {% highlight scss %}
// Usage as a Mixin // Usage as a mixin
.heading { .heading {
.text-hide(); .text-hide();
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment