From 8e00f623b3d689219994ea04e1fd7d5afc9f3cbc Mon Sep 17 00:00:00 2001 From: Quy Date: Fri, 15 Jan 2016 09:49:56 -0800 Subject: [PATCH] Use mixin syntax --- docs/components/utilities.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/components/utilities.md b/docs/components/utilities.md index 1a8ceb361c..00bc96721c 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 %}