aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Rebert <[email protected]>2016-01-15 17:41:35 -0800
committerChris Rebert <[email protected]>2016-01-15 17:41:35 -0800
commitdb5babb26a52a44d471a1ee65bcfbd5843471d4c (patch)
treedab01fccb41f83b7d64ef259ab8b004bc39d7394
parentf2a0623d34cf861bed598066ebcb061c3c7bf9f2 (diff)
parent8e00f623b3d689219994ea04e1fd7d5afc9f3cbc (diff)
downloadbootstrap-db5babb26a52a44d471a1ee65bcfbd5843471d4c.tar.xz
bootstrap-db5babb26a52a44d471a1ee65bcfbd5843471d4c.zip
Merge pull request #18912 from Quy/patch-4
Docs: Use mixin syntax in Sass example of .invisible
-rw-r--r--docs/components/utilities.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/components/utilities.md b/docs/components/utilities.md
index 1a8ceb361..00bc96721 100644
--- a/docs/components/utilities.md
+++ b/docs/components/utilities.md
@@ -254,7 +254,7 @@ The `.invisible` class can be used to toggle only the visibility of an element,
// Usage as a mixin
.element {
- .invisible();
+ @include invisible;
}
{% endhighlight %}