summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--array.c2
-rw-r--r--version.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/array.c b/array.c
index 3c1a0b8fa6..cef9603bd4 100644
--- a/array.c
+++ b/array.c
@@ -3656,7 +3656,7 @@ rb_ary_hash(VALUE ary)
* ary.include?(object) -> true or false
*
* Returns +true+ if the given +object+ is present in +self+ (that is, if any
- * object <code>==</code> +object+), otherwise returns +false+.
+ * element <code>==</code> +object+), otherwise returns +false+.
*
* a = [ "a", "b", "c" ]
* a.include?("b") #=> true
diff --git a/version.h b/version.h
index 13d03f0d8b..e2536c6826 100644
--- a/version.h
+++ b/version.h
@@ -1,6 +1,6 @@
#define RUBY_VERSION "2.0.0"
#define RUBY_RELEASE_DATE "2013-04-13"
-#define RUBY_PATCHLEVEL 120
+#define RUBY_PATCHLEVEL 121
#define RUBY_RELEASE_YEAR 2013
#define RUBY_RELEASE_MONTH 4