From 86bbeb6017e6df297945a3b938546fd668ea45ba Mon Sep 17 00:00:00 2001 From: knu Date: Fri, 17 Oct 2003 13:16:03 +0000 Subject: Reword and fix Overview. It is not necessary to require 'test/unit/ui/console/testrunner'. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4795 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- lib/set.rb | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/lib/set.rb b/lib/set.rb index a5d4a7730a..a19a4f3b55 100644 --- a/lib/set.rb +++ b/lib/set.rb @@ -13,12 +13,12 @@ # # == Overview # -# This library provides the Set class that 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. +# 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. # -# It also provides the SortedSet class which keeps the elements sorted, -# and adds the method +to_set+ to Enumerable. +# The method +to_set+ is added to Enumerable for convenience. # # See the Set class for an example of usage. @@ -625,7 +625,6 @@ end __END__ require 'test/unit' -require 'test/unit/ui/console/testrunner' class TC_Set < Test::Unit::TestCase def test_aref -- cgit v1.2.3