fixed typo in the example of URI.extract.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@8653 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
akira 2005-06-23 08:22:44 +00:00
Родитель 223798c50e
Коммит 7e962a7379
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -541,8 +541,8 @@ module URI
#
# require "uri"
#
# URI.extract("text here http://foo.bar.org/bla and here mailto:test@ruby.com and here also.")
# # => ["http://foo.bar.com/foobar", "mailto:foo@bar.com"]
# URI.extract("text here http://foo.example.org/bla and here mailto:test@example.com and here also.")
# # => ["http://foo.example.com/bla", "mailto:test@example.com"]
#
def self.extract(str, schemes = nil, &block)
if block_given?