README.rdoc in easy_diff-0.0.4 vs README.rdoc in easy_diff-0.0.5
- old
+ new
@@ -52,10 +52,11 @@
# :extra_added => "hi"
# }
=== Hash#easy_merge
-Takes a hash and recursively merges it with self. Arrays are merged by the union operation and then sorted.
+Takes a hash and recursively merges it with self. Arrays are merged by the union operation and then sorted. Arrays of Hashes are sorted by invoking +#sort+ on each Hash to make them comparable.
+
Using Hash#easy_merge! will modify self instead of returning a new hash.
original = {
:tags => ['a', 'b', 'c'],
:pos => {:x => '1', :y => '2'},