Skip to content

Commit

Permalink
Merge branch 'master' of github.com:rubyworks/facets
Browse files Browse the repository at this point in the history
  • Loading branch information
trans committed Apr 28, 2012
2 parents 1d018d2 + 1ca2454 commit dc3b5f8
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion lib/core/facets/hash/dearray_values.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
class Hash

# Any array values with be replaced with the first element of the array.
# Any array values will be replaced with the first element of the array.
# Arrays with no elements will be set to nil.
#
# h = { :a=>[1], :b=>[1,2], :c=>3, :d=>[] }
Expand Down
2 changes: 1 addition & 1 deletion lib/core/facets/hash/op_sub.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
class Hash

# Operator for remove hash paris. If another hash is given
# Operator for removing hash pairs. If another hash is given
# the pairs are only removed if both key and value are equal.
# If an array is given then matching keys are removed.
#
Expand Down
2 changes: 1 addition & 1 deletion lib/core/facets/hash/update_each.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
class Hash

# Iterates through each pair and updates a the hash
# Iterates through each pair and updates the hash
# in place. This is formally equivalent to #mash!
# But does not use #mash to accomplish the task.
# Hence #update_each is probably a touch faster.
Expand Down
2 changes: 1 addition & 1 deletion lib/core/facets/hash/weave.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
class Hash

# Weave is a very uniqe hash operator. I is designed
# Weave is a very unique hash operator. It is designed
# to merge to complex hashes in according to sensible,
# regular pattern. The effect is akin to inheritance.
#
Expand Down

0 comments on commit dc3b5f8

Please sign in to comment.