From 346c0ee2e0ce91942691d60c873237cc146a4b70 Mon Sep 17 00:00:00 2001 From: no author Date: Mon, 26 Sep 2005 23:59:46 +0000 Subject: Added $Id$ keyword. --- lib/coderay/scanner.rb | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'lib/coderay/scanner.rb') diff --git a/lib/coderay/scanner.rb b/lib/coderay/scanner.rb index 1cca607..a74a736 100644 --- a/lib/coderay/scanner.rb +++ b/lib/coderay/scanner.rb @@ -131,12 +131,14 @@ Known scanners: #{SCANNERS} require 'strscan' + # = Scanner + # # The base class for all Scanners. # # It is a subclass of Ruby's great +StringScanner+, which # makes it easy to access the scanning methods inside. # - # It is also +Enumerable+, so you can do this: + # It is also +Enumerable+, so you can use it like an Array of Tokens: # # require 'coderay' # @@ -148,8 +150,8 @@ Known scanners: #{SCANNERS} # # # prints: (*==)++; # - # OK, this is not a very good example :) - # You can also use map, any?, find and even sort_by. + # OK, this is a very simple example :) + # You can also use +map+, +any?+, +find+ and even +sort_by+, if you want. class Scanner < StringScanner # Raised if a Scanner fails while scanning -- cgit v1.2.1