From 908db6d403e16e345a78427e8eef397d5f8533e8 Mon Sep 17 00:00:00 2001 From: Juan Treminio Date: Wed, 19 Feb 2014 23:37:38 -0600 Subject: hash example has misplaced comas --- README.markdown | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.markdown b/README.markdown index 1e70f39..76c546f 100644 --- a/README.markdown +++ b/README.markdown @@ -650,8 +650,8 @@ Merges two or more hashes together and returns the resulting hash. For example: - $hash1 = {'one' => 1, 'two', => 2} - $hash2 = {'two' => 'dos', 'three', => 'tres'} + $hash1 = {'one' => 1, 'two' => 2} + $hash2 = {'two' => 'dos', 'three' => 'tres'} $merged_hash = merge($hash1, $hash2) # The resulting hash is equivalent to: # $merged_hash = {'one' => 1, 'two' => 'dos', 'three' => 'tres'} -- cgit v1.2.3