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

* lib/ostruct.rb: Typo in OpenStruct overview [Github Fixes #251]

Patch by Chun-wei Kuo


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@39518 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
zzak 2013-02-27 03:36:02 +00:00
parent 4cc2a6b1b1
commit dda10afc65
2 changed files with 7 additions and 2 deletions

View file

@ -1,3 +1,8 @@
Wed Feb 27 12:33:00 2013 Zachary Scott <zachary@zacharyscott.net>
* lib/ostruct.rb: Typo in OpenStruct overview [Github Fixes #251]
Patch by Chun-wei Kuo
Wed Feb 27 12:13:32 2013 NARUSE, Yui <naruse@ruby-lang.org>
* vm_exec.h (END_INSN): llvm-gcc may optimize out reg_cfp and cause

View file

@ -61,8 +61,8 @@
#
# == Implementation:
#
# An OpenStruct utilizes Ruby's method lookup structure to and find and define
# the necessary methods for properties. This is accomplished through the method
# An OpenStruct utilizes Ruby's method lookup structure to find and define the
# necessary methods for properties. This is accomplished through the method
# method_missing and define_method.
#
# This should be a consideration if there is a concern about the performance of