summaryrefslogtreecommitdiff
path: root/lib/forwardable.rb
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2006-06-02 13:23:02 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2006-06-02 13:23:02 +0000
commit8a10bf6fc0fc965d8fadf24ae3942cb2ab90139c (patch)
treeb6fae6f84c470a847ce32208ce45ee9c69af046d /lib/forwardable.rb
parentbf9e781e33a99178b73d6a63e59070be6bc5cbe9 (diff)
* lib/forwardable.rb: RDoc typo fix from Jan Svitok
<jan.svitok at gmail.com>. [ruby-core:07943] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@10211 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/forwardable.rb')
-rw-r--r--lib/forwardable.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/forwardable.rb b/lib/forwardable.rb
index 79004ccd20..b6344cd4f6 100644
--- a/lib/forwardable.rb
+++ b/lib/forwardable.rb
@@ -92,7 +92,7 @@
# array, like this:
#
# class RecordCollection
-# extends Forwardable
+# extend Forwardable
# def_delegator :@records, :[], :record_number
# end
#
@@ -100,7 +100,7 @@
# all of which delegate to @records, this is how you can do it:
#
# class RecordCollection
-# # extends Forwardable, but we did that above
+# # extend Forwardable, but we did that above
# def_delegators :@records, :size, :<<, :map
# end
#