summaryrefslogtreecommitdiff
path: root/lib/coderay.rb
diff options
context:
space:
mode:
authorKornelius Kalnbach <murphy@rubychan.de>2012-06-25 09:56:30 +0200
committerKornelius Kalnbach <murphy@rubychan.de>2012-06-25 09:56:30 +0200
commit5c5954d3dbcb9576fbd17a12d70014a9bef91a14 (patch)
tree43dc98d13276fdf1c4f47786b4f4b65f8d810e10 /lib/coderay.rb
parent5598df049e8823f9838b348e76227ef836c4e39b (diff)
parenta4b8b094da5525354cb8a927761385825236c5a1 (diff)
downloadcoderay-5c5954d3dbcb9576fbd17a12d70014a9bef91a14.tar.gz
Merge branch 'master' into multiline-inline-diff
Diffstat (limited to 'lib/coderay.rb')
-rw-r--r--lib/coderay.rb10
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/coderay.rb b/lib/coderay.rb
index 876d770..88c7cc2 100644
--- a/lib/coderay.rb
+++ b/lib/coderay.rb
@@ -78,12 +78,12 @@
# Read this to get a general view what CodeRay provides.
#
# == Scanning
-#
-# Scanning means analysing an input string, splitting it up into Tokens.
-# Each Token knows about what type it is: string, comment, class name, etc.
+#
+# Scanning means analysing an input string, splitting it up into Tokens.
+# 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::Ruby.
+# Each +lang+ (language) has its own Scanner; for example, <tt>:ruby</tt> code is
+# handled by CodeRay::Scanners::Ruby.
#
# CodeRay.scan:: Scan a string in a given language into Tokens.
# This is the most common method to use.