* lib/set.rb (SortedSet): Fix document. [Bug #1429]

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@23326 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
knu 2009-05-02 13:54:09 +00:00
Родитель f207f9fd51
Коммит 92c89f12fb
2 изменённых файлов: 6 добавлений и 2 удалений

Просмотреть файл

@ -1,3 +1,7 @@
Sat May 2 22:53:02 2009 Akinori MUSHA <knu@iDaemons.org>
* lib/set.rb (SortedSet): Fix document. [Bug #1429]
Sat May 2 10:34:29 2009 NARUSE, Yui <naruse@ruby-lang.org>
* enc/trans/utf8_mac-tbl.rb: don't use Unicode escape.

Просмотреть файл

@ -468,7 +468,7 @@ end
#
# require "set"
#
# set = SortedSet.new(2, 1, 5, 6, 4, 5, 3, 3, 3)
# set = SortedSet.new([2, 1, 5, 6, 4, 5, 3, 3, 3])
# ary = []
#
# set.each do |obj|
@ -477,7 +477,7 @@ end
#
# p ary # => [1, 2, 3, 4, 5, 6]
#
# set2 = SortedSet.new(1, 2, "3")
# set2 = SortedSet.new([1, 2, "3"])
# set2.each { |obj| } # => raises ArgumentError: comparison of Fixnum with String failed
#
class SortedSet < Set