From 57f261015252ae9db96e92be8aa77ebcaef52686 Mon Sep 17 00:00:00 2001 From: nobu Date: Sun, 18 Apr 2004 23:20:33 +0000 Subject: * dln.c, io.c, lib/benchmark.rb, lib/cgi.rb, lib/csv.rb, lib/date.rb, lib/ftools.rb, lib/getoptlong.rb, lib/logger.rb, lib/matrix.rb, lib/monitor.rb, lib/set.rb, lib/thwait.rb, lib/timeout.rb, lib/yaml.rb, lib/drb/drb.rb, lib/irb/workspace.rb, lib/net/ftp.rb, lib/net/http.rb, lib/net/imap.rb, lib/net/telnet.rb, lib/racc/parser.rb, lib/rinda/rinda.rb, lib/rinda/tuplespace.rb, lib/shell/command-processor.rb, lib/soap/rpc/soaplet.rb, lib/test/unit/testcase.rb, lib/test/unit/testsuite.rb: typo fix. git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@6179 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- lib/set.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/set.rb') diff --git a/lib/set.rb b/lib/set.rb index e9c6931b1..3aa80fd33 100644 --- a/lib/set.rb +++ b/lib/set.rb @@ -748,7 +748,7 @@ class TC_Set < Test::Unit::TestCase assert_same(orig_set1, set1) assert_equal(set3, set1) - # test3; multiple occurences of a set in an set + # test3; multiple occurrences of a set in an set set1 = Set[1, 2] set2 = Set[set1, Set[set1, 4], 3] @@ -767,7 +767,7 @@ class TC_Set < Test::Unit::TestCase set1.flatten! } - # test5; miscellaneus + # test5; miscellaneous empty = Set[] set = Set[Set[empty, "a"],Set[empty, "b"]] -- cgit