We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5ecf609 commit eb31940Copy full SHA for eb31940
lib/rouge/lexers/dylan.rb
@@ -79,7 +79,7 @@ class Dylan < RegexLexer
79
80
rule word_re do |m|
81
word = m[0]
82
- if operators.include?(m[0])
+ if operators.include?(word)
83
token Operator
84
elsif word.start_with?('<') && word.end_with?('>')
85
token Name::Class
0 commit comments