summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorknu <knu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-10-17 13:16:03 +0000
committerknu <knu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-10-17 13:16:03 +0000
commit86bbeb6017e6df297945a3b938546fd668ea45ba (patch)
treea87a259f16d87500604092e9af77c63bb41917ea
parent8cdd299bf067147f142ab7c3ebc27918e03539ae (diff)
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
-rw-r--r--lib/set.rb11
1 files 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