summaryrefslogtreecommitdiff
path: root/lib/ostruct.rb
diff options
context:
space:
mode:
authorNobuyoshi Nakada <[email protected]>2021-06-14 23:30:31 +0900
committerNobuyoshi Nakada <[email protected]>2021-06-14 23:31:49 +0900
commit5dde13e5ce7236d1de428f6a74f1043c6893bacf (patch)
treef0359e4e89d5d319a77b1474452ac52300a2ceb0 /lib/ostruct.rb
parent70833fab7fc2e912f5a405157b3afa101b482c17 (diff)
[ruby/ostruct] bump up
https://github.com/ruby/ostruct/commit/bb253be3e9
Diffstat (limited to 'lib/ostruct.rb')
-rw-r--r--lib/ostruct.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/ostruct.rb b/lib/ostruct.rb
index b3ff6efff1..a4e7b446db 100644
--- a/lib/ostruct.rb
+++ b/lib/ostruct.rb
@@ -107,7 +107,7 @@
# For all these reasons, consider not using OpenStruct at all.
#
class OpenStruct
- VERSION = "0.3.3"
+ VERSION = "0.4.0.pre"
#
# Creates a new OpenStruct object. By default, the resulting OpenStruct
@@ -327,8 +327,8 @@ class OpenStruct
#
# Removes the named field from the object and returns the value the field
- # contained if it was defined. You may optionally provide a block.
- # If the field is not defined, the result of the block is returned,
+ # contained if it was defined. You may optionally provide a block.
+ # If the field is not defined, the result of the block is returned,
# or a NameError is raised if no block was given.
#
# require "ostruct"