summaryrefslogtreecommitdiff
path: root/lib/coderay.rb
diff options
context:
space:
mode:
authorKornelius Kalnbach <murphy@rubychan.de>2012-05-04 14:53:56 +0200
committerKornelius Kalnbach <murphy@rubychan.de>2012-05-04 14:53:56 +0200
commit27e8836893974434ff4f54273a3b59b4ce86f74c (patch)
tree233556286388c910a925c02b1589f9d7b842ffea /lib/coderay.rb
parent359db4594e7fc874cf8087f599dc4e96b22e586b (diff)
downloadcoderay-27e8836893974434ff4f54273a3b59b4ce86f74c.tar.gz
fix buggy indentation in documentation (issue #23)
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.