summaryrefslogtreecommitdiff
path: root/spec/ruby/core/string/upto_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/core/string/upto_spec.rb')
-rw-r--r--spec/ruby/core/string/upto_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/ruby/core/string/upto_spec.rb b/spec/ruby/core/string/upto_spec.rb
index d2f1121360..3748a6fdeb 100644
--- a/spec/ruby/core/string/upto_spec.rb
+++ b/spec/ruby/core/string/upto_spec.rb
@@ -8,7 +8,7 @@ describe "String#upto" do
a.should == ["*+", "*,", "*-", "*.", "*/", "*0", "*1", "*2", "*3"]
end
- it "calls the block once even when start eqals stop" do
+ it "calls the block once even when start equals stop" do
a = []
"abc".upto("abc") { |s| a << s }
a.should == ["abc"]