ruby-changes:30211
From: knu <ko1@a...>
Date: Wed, 31 Jul 2013 14:58:21 +0900 (JST)
Subject: [ruby-changes:30211] knu:r42263 (trunk): Use the term "sorted" instead "ordered" when mentioning SortSet.
knu 2013-07-31 14:58:09 +0900 (Wed, 31 Jul 2013) New Revision: 42263 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=42263 Log: Use the term "sorted" instead "ordered" when mentioning SortSet. * lib/set.rb: [DOC] Use the term "sorted" instead "ordered" when mentioning SortSet. Modified files: trunk/ChangeLog trunk/lib/set.rb Index: ChangeLog =================================================================== --- ChangeLog (revision 42262) +++ ChangeLog (revision 42263) @@ -1,3 +1,8 @@ https://github.com/ruby/ruby/blob/trunk/ChangeLog#L1 +Wed Jul 31 14:38:10 2013 Akinori MUSHA <knu@i...> + + * lib/set.rb: [DOC] Use the term "sorted" instead "ordered" when + mentioning SortSet. + Wed Jul 31 12:18:47 2013 Tanaka Akira <akr@f...> * bignum.c (big2str_struct): New structure. Index: lib/set.rb =================================================================== --- lib/set.rb (revision 42262) +++ lib/set.rb (revision 42263) @@ -15,7 +15,7 @@ https://github.com/ruby/ruby/blob/trunk/lib/set.rb#L15 # 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. # -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/