summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Changes.textile2
-rw-r--r--lib/coderay/encoders/debug.rb4
2 files changed, 3 insertions, 3 deletions
diff --git a/Changes.textile b/Changes.textile
index e4f7c94..69eacdc 100644
--- a/Changes.textile
+++ b/Changes.textile
@@ -190,7 +190,7 @@ h3. @Plugin@
* *NEW* method @#title@
Set and get the plugin's title. Titles can be arbitrary strings.
-* *NEW* method *#helper* loads helpers from different plugins
+* *NEW* method @#helper@ loads helpers from different plugins
Use this syntax: @helper 'other_plugin/helper_name'@
diff --git a/lib/coderay/encoders/debug.rb b/lib/coderay/encoders/debug.rb
index a4b0648..03d6876 100644
--- a/lib/coderay/encoders/debug.rb
+++ b/lib/coderay/encoders/debug.rb
@@ -32,7 +32,7 @@ module Encoders
end
def close_token kind
- ">"
+ '>'
end
def begin_line kind
@@ -40,7 +40,7 @@ module Encoders
end
def end_line kind
- "]"
+ ']'
end
end