Skip to content

Commit

Permalink
Docs update Set#merge! to Set#concat. fixes #4211
Browse files Browse the repository at this point in the history
  • Loading branch information
Brian J. Cardiff committed Mar 29, 2017
1 parent 1097270 commit 27e697d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/set.cr
Expand Up @@ -16,7 +16,7 @@
# s1 == s2 # => true
# s1 == s3 # => true
# s1.add(2)
# s1.merge!([6, 8])
# s1.concat([6, 8])
# s1.subset? s2 # => false
# s2.subset? s1 # => true
# ```
Expand Down

1 comment on commit 27e697d

@need47
Copy link
Contributor

@need47 need47 commented on 27e697d Mar 29, 2017

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for the quick fix.

Please sign in to comment.