summaryrefslogtreecommitdiff
path: root/spec/ruby/language/until_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/language/until_spec.rb')
-rw-r--r--spec/ruby/language/until_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/ruby/language/until_spec.rb b/spec/ruby/language/until_spec.rb
index ddeb5d01e4..78c289ff56 100644
--- a/spec/ruby/language/until_spec.rb
+++ b/spec/ruby/language/until_spec.rb
@@ -220,7 +220,7 @@ describe "The until modifier with begin .. end block" do
a.should == [0, 1, 2, 4]
end
- it "restart the current iteration without reevaluting condition with redo" do
+ it "restart the current iteration without reevaluating condition with redo" do
a = []
i = 0
j = 0