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 fb412f1c8d..4977692d80 100644
--- a/array.c
+++ b/array.c
@@ -5241,7 +5241,7 @@ rb_ary_drop_while(VALUE ary)
* #=> [[nil, nil, nil], [nil, nil, nil], [nil, nil, nil]]
*
* An array can also be created by using the Array() method, provided by
- * Kernel, which calls #to_ary or #to_a on it's argument.
+ * Kernel, which tries to call #to_ary, then #to_a on its argument.
*
* Array({:a => "a", :b => "b"}) #=> [[:a, "a"], [:b, "b"]]
*
diff --git a/version.h b/version.h
index 97db613d95..e8348cf591 100644
--- a/version.h
+++ b/version.h
@@ -1,6 +1,6 @@
#define RUBY_VERSION "2.0.0"
#define RUBY_RELEASE_DATE "2013-03-05"
-#define RUBY_PATCHLEVEL 15
+#define RUBY_PATCHLEVEL 16
#define RUBY_RELEASE_YEAR 2013
#define RUBY_RELEASE_MONTH 3