1
0
Fork 0
mirror of https://github.com/haml/haml.git synced 2022-11-09 12:33:31 -05:00

[Sass] Add a docstring to Tree::RuleNode.

This commit is contained in:
Nathan Weizenbaum 2009-10-13 14:57:46 -07:00
parent 21b5641b4d
commit 43f817b86f

View file

@ -1,6 +1,9 @@
require 'pathname' require 'pathname'
module Sass::Tree module Sass::Tree
# A static node reprenting a CSS rule.
#
# @see Sass::Tree
class RuleNode < Node class RuleNode < Node
# The character used to include the parent selector # The character used to include the parent selector
PARENT = '&' PARENT = '&'