summaryrefslogtreecommitdiff
path: root/lib/coderay/scanners/delphi.rb
diff options
context:
space:
mode:
authorKornelius Kalnbach <murphy@rubychan.de>2011-08-19 04:43:37 +0200
committerKornelius Kalnbach <murphy@rubychan.de>2011-08-19 04:43:37 +0200
commit5dd7ca65fdb90d6ffe53790abf1fe5a29a66675e (patch)
treeb7450d8dd5b606ea70c8cb54c4743b83b91cf17c /lib/coderay/scanners/delphi.rb
parent5b0d3ed58e4e804ba5585dd2091b8091498488fc (diff)
downloadcoderay-5dd7ca65fdb90d6ffe53790abf1fe5a29a66675e.tar.gz
rename CaseIgnoringWordList to WordList::CaseIgnoring
Diffstat (limited to 'lib/coderay/scanners/delphi.rb')
-rw-r--r--lib/coderay/scanners/delphi.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/coderay/scanners/delphi.rb b/lib/coderay/scanners/delphi.rb
index 1361869..b328155 100644
--- a/lib/coderay/scanners/delphi.rb
+++ b/lib/coderay/scanners/delphi.rb
@@ -33,11 +33,11 @@ module Scanners
'virtual', 'write', 'writeonly',
] # :nodoc:
- IDENT_KIND = CaseIgnoringWordList.new(:ident).
+ IDENT_KIND = WordList::CaseIgnoring.new(:ident).
add(KEYWORDS, :keyword).
add(DIRECTIVES, :directive) # :nodoc:
- NAME_FOLLOWS = CaseIgnoringWordList.new(false).
+ NAME_FOLLOWS = WordList::CaseIgnoring.new(false).
add(%w(procedure function .)) # :nodoc:
protected