summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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"