summaryrefslogtreecommitdiff
path: root/spec/ruby
diff options
context:
space:
mode:
authorcareworry <167077904+careworry@users.noreply.github.com>2024-04-18 23:32:34 +0800
committerGitHub <noreply@github.com>2024-04-18 15:32:34 +0000
commit8e08556fa7f2b6e9c43b040f2aea06dccead5d13 (patch)
treede8f84a17ebbbcbfe68424aadcef7228925b2ae1 /spec/ruby
parentff599aea7cb810ca5284c10184f435101e4b9349 (diff)
chore: remove repetitive words (#10573)
Signed-off-by: careworry <worrycare@outlook.com>
Diffstat (limited to 'spec/ruby')
-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 }