1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* lib/set.rb: [DOC] Fix grammatical error by @bouk [fix GH-524]

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@44812 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
hsbt 2014-02-05 00:33:38 +00:00
parent bfda9402a9
commit b38d16dad9

View file

@ -541,7 +541,7 @@ class Set
end end
# #
# SortedSet implements a Set that guarantees that it's element are # SortedSet implements a Set that guarantees that its elements are
# yielded in sorted order (according to the return values of their # yielded in sorted order (according to the return values of their
# #<=> methods) when iterating over them. # #<=> methods) when iterating over them.
# #