summaryrefslogtreecommitdiff
path: root/lib/forwardable.rb
diff options
context:
space:
mode:
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 3e979a3155..1889f44109 100644
--- a/lib/forwardable.rb
+++ b/lib/forwardable.rb
@@ -93,7 +93,7 @@
# array, like this:
#
# class RecordCollection
-# extends Forwardable
+# extend Forwardable
# def_delegator :@records, :[], :record_number
# end
#
@@ -101,7 +101,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
# f = Foo.new