summaryrefslogtreecommitdiff
path: root/etc/todo
diff options
context:
space:
mode:
Diffstat (limited to 'etc/todo')
-rw-r--r--etc/todo/scanners/bash.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/todo/scanners/bash.rb b/etc/todo/scanners/bash.rb
index cbc9e25..d5c5d0f 100644
--- a/etc/todo/scanners/bash.rb
+++ b/etc/todo/scanners/bash.rb
@@ -82,7 +82,7 @@ module CodeRay
elsif match = scan(/[a-zA-Z]\w*/)
tokens << [match, :ident]
elsif match = scan(/\#!.*/) # until eof
- tokens << [match, :preprocessor]
+ tokens << [match, :doctype]
elsif match = scan(/\#.*/) # until eof
tokens << [match, :comment]
# catch the rest as other