summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--hash.c5
-rw-r--r--version.h2
2 files changed, 3 insertions, 4 deletions
diff --git a/hash.c b/hash.c
index fa08b535d6..3746099630 100644
--- a/hash.c
+++ b/hash.c
@@ -2573,9 +2573,8 @@ env_update(VALUE env, VALUE hash)
/*
* A <code>Hash</code> is a collection of key-value pairs. It is
* similar to an <code>Array</code>, except that indexing is done via
- * arbitrary keys of any object type, not an integer index. The order
- * in which you traverse a hash by either key or value may seem
- * arbitrary, and will generally not be in the insertion order.
+ * arbitrary keys of any object type, not an integer index. Hashes enumerate
+ * their values in the order that the corresponding keys were inserted.
*
* Hashes have a <em>default value</em> that is returned when accessing
* keys that do not exist in the hash. By default, that value is
diff --git a/version.h b/version.h
index 85113c1a97..74df289306 100644
--- a/version.h
+++ b/version.h
@@ -1,5 +1,5 @@
#define RUBY_VERSION "1.9.1"
-#define RUBY_PATCHLEVEL 421
+#define RUBY_PATCHLEVEL 422
#define RUBY_VERSION_MAJOR 1
#define RUBY_VERSION_MINOR 9
#define RUBY_VERSION_TEENY 1