diff options
author | Kornelius Kalnbach <murphy@rubychan.de> | 2011-08-19 04:43:37 +0200 |
---|---|---|
committer | Kornelius Kalnbach <murphy@rubychan.de> | 2011-08-19 04:43:37 +0200 |
commit | 5dd7ca65fdb90d6ffe53790abf1fe5a29a66675e (patch) | |
tree | b7450d8dd5b606ea70c8cb54c4743b83b91cf17c /lib/coderay/scanners/delphi.rb | |
parent | 5b0d3ed58e4e804ba5585dd2091b8091498488fc (diff) | |
download | coderay-5dd7ca65fdb90d6ffe53790abf1fe5a29a66675e.tar.gz |
rename CaseIgnoringWordList to WordList::CaseIgnoring
Diffstat (limited to 'lib/coderay/scanners/delphi.rb')
-rw-r--r-- | lib/coderay/scanners/delphi.rb | 4 |
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 |