aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport
diff options
context:
space:
mode:
authorFrancesco Rodriguez <lrodriguezsanc@gmail.com>2012-06-19 14:25:11 -0500
committerFrancesco Rodriguez <lrodriguezsanc@gmail.com>2012-06-19 14:25:11 -0500
commit24587c26ddb6f36e6f5aaaf3f09659ae095c8ff6 (patch)
tree65fd4413d39866e858c5fc32fe991c8bcbe53154 /activesupport
parent3b4d286cd9d2a6ebb69cb08933f13171aa14304c (diff)
downloadrails-24587c26ddb6f36e6f5aaaf3f09659ae095c8ff6.tar.gz
rails-24587c26ddb6f36e6f5aaaf3f09659ae095c8ff6.tar.bz2
rails-24587c26ddb6f36e6f5aaaf3f09659ae095c8ff6.zip
fix typo [ci skip]
Diffstat (limited to 'activesupport')
-rw-r--r--activesupport/lib/active_support/testing/assertions.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/activesupport/lib/active_support/testing/assertions.rb b/activesupport/lib/active_support/testing/assertions.rb
index d84595fa8f..a5d0e10fcf 100644
--- a/activesupport/lib/active_support/testing/assertions.rb
+++ b/activesupport/lib/active_support/testing/assertions.rb
@@ -38,7 +38,7 @@ module ActiveSupport
# post :create, :article => {...}
# end
#
- # A error message can be specified.
+ # An error message can be specified.
#
# assert_difference 'Article.count', -1, "An Article should be destroyed" do
# post :delete, :id => ...
@@ -67,7 +67,7 @@ module ActiveSupport
# post :create, :article => invalid_attributes
# end
#
- # A error message can be specified.
+ # An error message can be specified.
#
# assert_no_difference 'Article.count', "An Article should not be created" do
# post :create, :article => invalid_attributes