diff options
Diffstat (limited to 'lib/coderay')
-rw-r--r-- | lib/coderay/tokens.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/coderay/tokens.rb b/lib/coderay/tokens.rb index 26c923f..7d82afb 100644 --- a/lib/coderay/tokens.rb +++ b/lib/coderay/tokens.rb @@ -353,7 +353,7 @@ module CodeRay # # Returns self. def << token - @callback.call token + @callback.call(*token) @size += 1 self end |