summaryrefslogtreecommitdiff
path: root/lib/coderay/scanners/clojure.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/coderay/scanners/clojure.rb')
-rw-r--r--lib/coderay/scanners/clojure.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/coderay/scanners/clojure.rb b/lib/coderay/scanners/clojure.rb
index 89713de..f8fbf65 100644
--- a/lib/coderay/scanners/clojure.rb
+++ b/lib/coderay/scanners/clojure.rb
@@ -156,7 +156,7 @@ module CodeRay
elsif match = scan(/['`\(\[\)\]\{\}]|\#[({]|~@?|[@\^]/)
encoder.text_token match, :operator
elsif match = scan(/;.*/)
- encoder.text_token match, :comment # FIXME: recognize (comment ...) too
+ encoder.text_token match, :comment # TODO: recognize (comment ...) too
elsif match = scan(/\#?\\(?:newline|space|.?)/)
encoder.text_token match, :char
elsif match = scan(/\#[ft]/)