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