lib/sass/tree/comment_node.rb in sass-3.3.0.alpha.149 vs lib/sass/tree/comment_node.rb in sass-3.3.0.alpha.162

- old
+ new

@@ -4,14 +4,14 @@ # A static node representing a Sass comment (silent or loud). # # @see Sass::Tree class CommentNode < Node # The text of the comment, not including `/*` and `*/`. - # Interspersed with {Sass::Script::Node}s representing `#{}`-interpolation + # Interspersed with {Sass::Script::Tree::Node}s representing `#{}`-interpolation # if this is a loud comment. # - # @return [Array<String, Sass::Script::Node>] + # @return [Array<String, Sass::Script::Tree::Node>] attr_accessor :value # The text of the comment # after any interpolated SassScript has been resolved. # Only set once \{Tree::Visitors::Perform} has been run. @@ -24,10 +24,10 @@ # and `:loud` means it's output even in `:compressed`. # # @return [Symbol] attr_accessor :type - # @param value [Array<String, Sass::Script::Node>] See \{#value} + # @param value [Array<String, Sass::Script::Tree::Node>] See \{#value} # @param type [Symbol] See \{#type} def initialize(value, type) @value = Sass::Util.with_extracted_values(value) {|str| normalize_indentation str} @type = type super()