Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
RubySpec: fix abbreviation.
  • Loading branch information
eregon committed Feb 9, 2015
1 parent ddf5c6d commit 17b1fc8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions spec/ruby/core/binding/shared/clone.rb
Expand Up @@ -4,7 +4,7 @@
@b2 = @b1.send(@method)
end

it "returns a copy of the Bind object" do
it "returns a copy of the Binding object" do
@b1.should_not == @b2

eval("@secret", @b1).should == eval("@secret", @b2)
Expand All @@ -13,7 +13,7 @@
eval("a", @b1).should == eval("a", @b2)
end

it "is a shallow copy of the Bind object" do
it "is a shallow copy of the Binding object" do
eval("a = false", @b1)
eval("a", @b2).should == false
end
Expand Down

0 comments on commit 17b1fc8

Please sign in to comment.