summaryrefslogtreecommitdiff
path: root/lib/coderay
diff options
context:
space:
mode:
authormurphy <murphy@rubychan.de>2005-09-28 16:13:17 +0000
committermurphy <murphy@rubychan.de>2005-09-28 16:13:17 +0000
commit0cffb71d357e50dad6f1223e1df9152807e3b56f (patch)
tree3d797488f5bbeab3b0c225ee552a6398dbb01cec /lib/coderay
parentd8dab2037b0fa4748f3fae1e5ae980c112b2fa29 (diff)
downloadcoderay-0cffb71d357e50dad6f1223e1df9152807e3b56f.tar.gz
Still working on Documentation.
Rakefile: fixed a status message.
Diffstat (limited to 'lib/coderay')
-rw-r--r--lib/coderay/encoder.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/coderay/encoder.rb b/lib/coderay/encoder.rb
index dc7bee6..4340b29 100644
--- a/lib/coderay/encoder.rb
+++ b/lib/coderay/encoder.rb
@@ -9,7 +9,7 @@ module CodeRay
# given format.
module Encoders
- # Raised if Encoders[] fails because:
+ # Raised if Encoders::[] fails because:
# * a file could not be found
# * the requested Encoder is not registered
EncoderNotFound = Class.new Exception
@@ -170,7 +170,7 @@ module CodeRay
finish options
end
- # Behave like a proc. The tokens method is converted to a proc.
+ # Behave like a proc. The token method is converted to a proc.
def to_proc
method(:token).to_proc
end