summaryrefslogtreecommitdiff
path: root/lib/set.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/set.rb')
-rw-r--r--lib/set.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/set.rb b/lib/set.rb
index e9c6931b14..3aa80fd334 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"]]