summaryrefslogtreecommitdiff
path: root/spec/ruby/library/set/exclusion_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/library/set/exclusion_spec.rb')
-rw-r--r--spec/ruby/library/set/exclusion_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/ruby/library/set/exclusion_spec.rb b/spec/ruby/library/set/exclusion_spec.rb
index 407aa70032..c9fa0e287e 100644
--- a/spec/ruby/library/set/exclusion_spec.rb
+++ b/spec/ruby/library/set/exclusion_spec.rb
@@ -6,7 +6,7 @@ describe "Set#^" do
@set = Set[1, 2, 3, 4]
end
- it "returns a new Set containing elements that are not in both self and the passed Enumberable" do
+ it "returns a new Set containing elements that are not in both self and the passed Enumerable" do
(@set ^ Set[3, 4, 5]).should == Set[1, 2, 5]
(@set ^ [3, 4, 5]).should == Set[1, 2, 5]
end