1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* lib/delegate.rb: Fix example of using delegator.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@45882 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
ayumin 2014-05-08 19:02:36 +00:00
parent 8b6a874a59
commit 2ff10784e4
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
Fri May 9 03:59:06 2014 Ayumu AIZAWA <ayumu.aizawa@gmail.com>
* lib/delegate.rb: Fix example of using delegator.
patched from Andrey Koleshko. [Fixes GH-505]
Fri May 9 03:42:43 2014 Ayumu AIZAWA <ayumu.aizawa@gmail.com> Fri May 9 03:42:43 2014 Ayumu AIZAWA <ayumu.aizawa@gmail.com>
* lib/shell.rb: add documentation in lib/shell.rb * lib/shell.rb: add documentation in lib/shell.rb

View file

@ -248,7 +248,7 @@ end
# #
# class User # class User
# def born_on # def born_on
# Date.new(1989, 09, 10) # Date.new(1989, 9, 10)
# end # end
# end # end
# #