diff options
| author | Quy Ton <[email protected]> | 2015-02-18 11:16:49 -0800 |
|---|---|---|
| committer | Chris Rebert <[email protected]> | 2015-02-20 20:02:20 -0800 |
| commit | 074419298eca781ea0cbe3a9988f44f85afb3eef (patch) | |
| tree | 062e85bf5a7a7926475f6861cb44ea52699892c0 /docs/_includes | |
| parent | 690abbcc0cd74e31e0edeeebf2e7f576e39884c0 (diff) | |
| download | bootstrap-074419298eca781ea0cbe3a9988f44f85afb3eef.tar.xz bootstrap-074419298eca781ea0cbe3a9988f44f85afb3eef.zip | |
Fix capitalization/singular of comments in helper class docs
Closes #15839 by merging a tweaked version of it.
Diffstat (limited to 'docs/_includes')
| -rw-r--r-- | docs/_includes/css/helpers.html | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/docs/_includes/css/helpers.html b/docs/_includes/css/helpers.html index 69dd3f95c..40bb9d58b 100644 --- a/docs/_includes/css/helpers.html +++ b/docs/_includes/css/helpers.html @@ -109,14 +109,14 @@ <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(); } @@ -142,7 +142,7 @@ } } -// Usage as a Mixin +// Usage as a mixin .element { .clearfix(); } @@ -186,7 +186,7 @@ <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(); @@ -200,7 +200,7 @@ <h1 class="text-hide">Custom heading</h1> {% endhighlight %} {% highlight scss %} -// Usage as a Mixin +// Usage as a mixin .heading { .text-hide(); } |
