summaryrefslogtreecommitdiff
path: root/lib/coderay.rb
diff options
context:
space:
mode:
authormurphy <murphy@rubychan.de>2006-03-16 18:35:43 +0000
committermurphy <murphy@rubychan.de>2006-03-16 18:35:43 +0000
commitace3fcea2ffccb6d88f155cd884eb05d2b2cb067 (patch)
treed98ec478acdcb6c5516cf47c4a9141ce95991fd3 /lib/coderay.rb
parentc9b79010179d695fa16e1dd2f51818fa5c929548 (diff)
downloadcoderay-ace3fcea2ffccb6d88f155cd884eb05d2b2cb067.tar.gz
HTML Encoder: hints fixed and improved. Still in progress.
Documentation cleanups.
Diffstat (limited to 'lib/coderay.rb')
-rw-r--r--lib/coderay.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/coderay.rb b/lib/coderay.rb
index 23901ed..e1dbcd2 100644
--- a/lib/coderay.rb
+++ b/lib/coderay.rb
@@ -69,10 +69,10 @@
# * Input and language are always sorted in this order: +code+, +lang+.
# (This is in alphabetical order, if you need a mnemonic ;)
#
-# You should be able to highlight everything you want just using this methods;
+# You should be able to highlight everything you want just using these methods;
# so there is no need to dive into CodeRay's deep class hierarchy.
#
-# The exmaples in the demo/ directory demonstrate common cases using this interface.
+# The examples in the demo directory demonstrate common cases using this interface.
#
# = Basic Access Ways
#
@@ -84,7 +84,7 @@
# Each Token knows about what type it is: string, comment, class name, etc.
#
# Each +lang+ (language) has its own Scanner; for example, <tt>:ruby</tt> code is
-# handled by CodeRay::Scanners::RubyScanner.
+# handled by CodeRay::Scanners::Ruby.
#
# CodeRay.scan:: Scan a string in a given language into Tokens.
# This is the most common method to use.