summaryrefslogtreecommitdiff
path: root/spec/ruby/language/break_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/language/break_spec.rb')
-rw-r--r--spec/ruby/language/break_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/ruby/language/break_spec.rb b/spec/ruby/language/break_spec.rb
index 627cb4a071..e725e77e80 100644
--- a/spec/ruby/language/break_spec.rb
+++ b/spec/ruby/language/break_spec.rb
@@ -372,7 +372,7 @@ describe "Executing break from within a block" do
end.should_not raise_error
end
- it "raises LocalJumpError when converted into a proc during a a super call" do
+ it "raises LocalJumpError when converted into a proc during a super call" do
cls1 = Class.new { def foo(&b); b; end }
cls2 = Class.new(cls1) { def foo; super { break 1 }.call; end }