summaryrefslogtreecommitdiff
path: root/lib/coderay/token_kinds.rb
diff options
context:
space:
mode:
authormurphy <murphy@rubychan.de>2011-04-17 14:03:02 +0000
committermurphy <murphy@rubychan.de>2011-04-17 14:03:02 +0000
commitd8c9161dc174e364fc4a3e8e9df1d45262c5cc4a (patch)
tree0f079cd03bb4fb43c36ee5c161b210c7a9cbd189 /lib/coderay/token_kinds.rb
parent84bbaddb495a1657433106a85274424e5a56259e (diff)
downloadcoderay-d8c9161dc174e364fc4a3e8e9df1d45262c5cc4a.tar.gz
renamed pre_* token kinds to predefined_*
Diffstat (limited to 'lib/coderay/token_kinds.rb')
-rwxr-xr-xlib/coderay/token_kinds.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/coderay/token_kinds.rb b/lib/coderay/token_kinds.rb
index 1a8f85f..45507a1 100755
--- a/lib/coderay/token_kinds.rb
+++ b/lib/coderay/token_kinds.rb
@@ -55,8 +55,8 @@ module CodeRay
:oct => 'oc',
:predefined => 'pd',
:preprocessor => 'pp',
- :pre_constant => 'pc', # FIXME: rename to :predefined_constant
- :pre_type => 'pt', # FIXME: rename to :predefined_type
+ :predefined_constant => 'pc',
+ :predefined_type => 'pt',
:pseudo_class => 'ps',
:regexp => 'rx',
:reserved => 'r',