diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-09-17 04:06:18 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-09-17 04:06:18 +0000 |
commit | 7c95751f33756aa9f206c553ad3bc039b7c1c83c (patch) | |
tree | a7950018038610ea3d238acdef16b5963ab803db | |
parent | 669a37ec4d9387d20fa9a4308ea09fbb4578f8d4 (diff) | |
download | ruby-7c95751f33756aa9f206c553ad3bc039b7c1c83c.tar.gz ruby-7c95751f33756aa9f206c553ad3bc039b7c1c83c.tar.xz ruby-7c95751f33756aa9f206c553ad3bc039b7c1c83c.zip |
* doc/re.rb (Regexp): not under Doc.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@24975 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | doc/re.rb | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -1,4 +1,4 @@ -module Doc +# -*- coding: utf-8 -*- # Regular expressions (<i>regexp</i>s) are patterns which describe the # contents of a string. They're used for testing whether a string contains a # given pattern, or extracting the portions that match. They are created @@ -580,5 +580,4 @@ module Doc # #=> #<MatchData "aaaaaaaaaaaaaaaaaaaaaaaaaaaaa"> # # - class Regexp; end -end +class Regexp; end |