diff --git a/docs/components/helpers.md b/docs/components/helpers.md index e41b017ee1..f76ff581b9 100644 --- a/docs/components/helpers.md +++ b/docs/components/helpers.md @@ -78,18 +78,13 @@ Float an element to the left or right with a class. `!important` is included to // Usage as mixins .element { - .pull-left(); + @include pull-left; } .another-element { - .pull-right(); + @include pull-right; } {% endhighlight %} -
To align components in navbars with utility classes, use .navbar-left
or .navbar-right
instead. See the navbar docs for details.