diff options
Diffstat (limited to 'lib/coderay/scanners/php.rb')
-rw-r--r-- | lib/coderay/scanners/php.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/coderay/scanners/php.rb b/lib/coderay/scanners/php.rb index 7f09de9..ed1095e 100644 --- a/lib/coderay/scanners/php.rb +++ b/lib/coderay/scanners/php.rb @@ -183,12 +183,12 @@ module Scanners IDENT_KIND = CaseIgnoringWordList.new(:ident). add(KEYWORDS, :reserved). - add(TYPES, :pre_type). + add(TYPES, :predefined_type). add(LANGUAGE_CONSTRUCTS, :reserved). add(BUILTIN_FUNCTIONS, :predefined). - add(CLASSES, :pre_constant). + add(CLASSES, :predefined_constant). add(EXCEPTIONS, :exception). - add(CONSTANTS, :pre_constant) + add(CONSTANTS, :predefined_constant) VARIABLE_KIND = WordList.new(:local_variable). add(PREDEFINED, :predefined) |