Skip to content

Commit

Permalink
Fixed some sphinx warnings, errors.
Browse files Browse the repository at this point in the history
Normalized the classnames of the Less filters.
  • Loading branch information
miracle2k committed Mar 9, 2012
1 parent a588111 commit c08d680
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions docs/builtin_filters.rst
Original file line number Diff line number Diff line change
Expand Up @@ -92,9 +92,9 @@ CSS Compilers


``less_ruby``
~~~~~~~~
~~~~~~~~~~~~~

.. autoclass:: webassets.filter.less.LessRubyFilter
.. autoclass:: webassets.filter.less_ruby.LessFilter


.. _filters-sass:
Expand All @@ -118,7 +118,7 @@ CSS Compilers


``pyscss``
~~~~~~~~
~~~~~~~~~~

.. autoclass:: webassets.filter.pyscss.PyScssFilter

Expand Down
2 changes: 1 addition & 1 deletion src/webassets/filter/less.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from webassets.exceptions import FilterError


class NodeLessFilter(Filter):
class LessFilter(Filter):
"""Converts `Less <http://lesscss.org/>`_ markup to real CSS.
This depends on the NodeJS implementation of less, installable
Expand Down
2 changes: 1 addition & 1 deletion src/webassets/filter/less_ruby.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
__all__ = ('LessFilter',)


class LessRubyFilter(Filter):
class LessFilter(Filter):
"""Converts `Less <http://lesscss.org/>`_ markup to real CSS.
This uses the old Ruby implementation available in the 1.x versions
Expand Down

0 comments on commit c08d680

Please sign in to comment.