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