aboutsummaryrefslogtreecommitdiffstats
path: root/spec/ruby/language/proc_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/language/proc_spec.rb')
-rw-r--r--spec/ruby/language/proc_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/ruby/language/proc_spec.rb b/spec/ruby/language/proc_spec.rb
index 4026f3bcf5..c44e711d2b 100644
--- a/spec/ruby/language/proc_spec.rb
+++ b/spec/ruby/language/proc_spec.rb
@@ -21,7 +21,7 @@ describe "A Proc" do
@l.call.should == 1
end
- it "raises an ArgumentErro if a value is passed" do
+ it "raises an ArgumentError if a value is passed" do
lambda { @l.call(0) }.should raise_error(ArgumentError)
end
end