diff options
author | Kornelius Kalnbach <murphy@rubychan.de> | 2013-06-09 21:11:29 +0200 |
---|---|---|
committer | Kornelius Kalnbach <murphy@rubychan.de> | 2013-06-09 21:11:29 +0200 |
commit | 8a95c0a59eab55caaa4aff142f6448ede91db4d7 (patch) | |
tree | 492c89f95f2dc6c325a86ed5f360c8891eecf473 | |
parent | bdfffae1b1362fe766bab2fed90efab35b3eb5f9 (diff) | |
download | coderay-8a95c0a59eab55caaa4aff142f6448ede91db4d7.tar.gz |
whitespace
-rw-r--r-- | lib/coderay/encoders/html.rb | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/lib/coderay/encoders/html.rb b/lib/coderay/encoders/html.rb index 635a4d8..0fd1317 100644 --- a/lib/coderay/encoders/html.rb +++ b/lib/coderay/encoders/html.rb @@ -286,8 +286,7 @@ module Encoders def end_group kind if $CODERAY_DEBUG && (@opened.empty? || @opened.last != kind) - warn 'Malformed token stream: Trying to close a token (%p) ' \ - 'that is not open. Open are: %p.' % [kind, @opened[1..-1]] + warn 'Malformed token stream: Trying to close a token group (%p) that is not open. Open are: %p.' % [kind, @opened[1..-1]] end if @opened.pop @out << '</span>' @@ -312,8 +311,7 @@ module Encoders def end_line kind if $CODERAY_DEBUG && (@opened.empty? || @opened.last != kind) - warn 'Malformed token stream: Trying to close a line (%p) ' \ - 'that is not open. Open are: %p.' % [kind, @opened[1..-1]] + warn 'Malformed token stream: Trying to close a line (%p) that is not open. Open are: %p.' % [kind, @opened[1..-1]] end if @opened.pop @out << '</span>' |