Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Merge pull request #656 from kostya/hash_each
fix hash#each yields array
- Loading branch information
Showing
with
3 additions
and 3 deletions.
@@ -1,2 +1,2 @@ | ||
fails:Hash#each_pair yields a [[key, value]] Array for each pair to a block expecting |*args| | ||
fails:Hash#each_pair properly expands (or not) child class's 'each'-yielded args | ||
fails:Hash#each_pair yields the key only to a block expecting |key,| |
@@ -1,2 +1,2 @@ | ||
fails:Hash#each yields a [[key, value]] Array for each pair to a block expecting |*args| | ||
fails:Hash#each properly expands (or not) child class's 'each'-yielded args | ||
fails:Hash#each yields the key only to a block expecting |key,| |