diff options
Diffstat (limited to 'spec/ruby/library/set/shared')
-rw-r--r-- | spec/ruby/library/set/shared/difference.rb | 2 |
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 |