Skip to content

Commit e24eb80

Browse files
authored
Fix missing method error in SASS lexer (#2125)
1 parent a85fb0f commit e24eb80

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/rouge/lexers/sass/common.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ class SassCommon < RegexLexer
155155
state :attr_common do
156156
mixin :has_interp
157157
rule id do |m|
158-
if CSS.attributes.include? m[0]
158+
if CSS.properties.include? m[0]
159159
token Name::Label
160160
else
161161
token Name::Attribute

0 commit comments

Comments
 (0)