Use the term "sorted" instead "ordered" when mentioning SortSet.

* lib/set.rb: [DOC] Use the term "sorted" instead "ordered" when
  mentioning SortSet.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@42263 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
knu 2013-07-31 05:58:09 +00:00
Родитель 6189859101
Коммит d950ffe5f5
2 изменённых файлов: 6 добавлений и 1 удалений

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

@ -1,3 +1,8 @@
Wed Jul 31 14:38:10 2013 Akinori MUSHA <knu@iDaemons.org>
* lib/set.rb: [DOC] Use the term "sorted" instead "ordered" when
mentioning SortSet.
Wed Jul 31 12:18:47 2013 Tanaka Akira <akr@fsij.org>
* bignum.c (big2str_struct): New structure.

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

@ -15,7 +15,7 @@
# This library provides the Set class, which deals with a collection
# of unordered values with no duplicates. It is a hybrid of Array's
# intuitive inter-operation facilities and Hash's fast lookup. If you
# need to keep values ordered, use the SortedSet class.
# need to keep values sorted in some order, use the SortedSet class.
#
# The method +to_set+ is added to Enumerable for convenience.
#