diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | lib/ostruct.rb | 4 |
2 files changed, 7 insertions, 2 deletions
@@ -1,3 +1,8 @@ +Wed Feb 27 12:33:00 2013 Zachary Scott <[email protected]> + + * lib/ostruct.rb: Typo in OpenStruct overview [Github Fixes #251] + Patch by Chun-wei Kuo + Wed Feb 27 12:13:32 2013 NARUSE, Yui <[email protected]> * vm_exec.h (END_INSN): llvm-gcc may optimize out reg_cfp and cause diff --git a/lib/ostruct.rb b/lib/ostruct.rb index b291f08308..df09cc953f 100644 --- a/lib/ostruct.rb +++ b/lib/ostruct.rb @@ -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 |