summaryrefslogtreecommitdiff
path: root/lib/coderay/scanners
diff options
context:
space:
mode:
Diffstat (limited to 'lib/coderay/scanners')
-rw-r--r--lib/coderay/scanners/bash.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/coderay/scanners/bash.rb b/lib/coderay/scanners/bash.rb
index a9b506e..b79047e 100644
--- a/lib/coderay/scanners/bash.rb
+++ b/lib/coderay/scanners/bash.rb
@@ -121,7 +121,7 @@ module CodeRay module Scanners
elsif match = scan(/'[^']*'?/)
kind = :string
elsif match = scan(/(?: \& | > | < | \| >> | << | >\& )/ox)
- kind = :bin
+ kind = :binary
elsif match = scan(/\d+[\.-](?:\d+[\.-]?)+/)
#versions, dates, and hyphen delimited numbers
kind = :float