aboutsummaryrefslogtreecommitdiffstats
path: root/spec/ruby/library/set/shared/difference.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/library/set/shared/difference.rb')
-rw-r--r--spec/ruby/library/set/shared/difference.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/ruby/library/set/shared/difference.rb b/spec/ruby/library/set/shared/difference.rb
index 9439715da7..52807709c3 100644
--- a/spec/ruby/library/set/shared/difference.rb
+++ b/spec/ruby/library/set/shared/difference.rb
@@ -3,7 +3,7 @@ describe :set_difference, shared: true do
@set = Set[:a, :b, :c]
end
- it "returns a new Set containting self's elements excluding the elements in the passed Enumerable" do
+ it "returns a new Set containing self's elements excluding the elements in the passed Enumerable" do
@set.send(@method, Set[:a, :b]).should == Set[:c]
@set.send(@method, [:b, :c]).should == Set[:a]
end