diff options
| author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-04-18 23:20:33 +0000 |
|---|---|---|
| committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-04-18 23:20:33 +0000 |
| commit | 57f261015252ae9db96e92be8aa77ebcaef52686 (patch) | |
| tree | 5a7efff74ded1778e728c9d1d410e148141cb9d6 /lib/set.rb | |
| parent | 26a9674ba73a66afb2069324a5cd9a9c79b9b550 (diff) | |
| download | ruby-57f261015252ae9db96e92be8aa77ebcaef52686.tar.gz ruby-57f261015252ae9db96e92be8aa77ebcaef52686.tar.xz ruby-57f261015252ae9db96e92be8aa77ebcaef52686.zip | |
* 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
Diffstat (limited to 'lib/set.rb')
| -rw-r--r-- | lib/set.rb | 4 |
1 files changed, 2 insertions, 2 deletions
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"]] |
