aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/testing
diff options
context:
space:
mode:
authorVijay Dev <vijaydev.cse@gmail.com>2015-10-31 17:01:41 +0000
committerVijay Dev <vijaydev.cse@gmail.com>2015-10-31 17:01:41 +0000
commitb217354dbbbbb49a020b0073ebb62c5cd2d96140 (patch)
treeb4bbbf8cf1e5223f21e81856a62b9b53c88713a6 /activesupport/lib/active_support/testing
parente913834e92845b09c2e5be6394b63702c538764b (diff)
parente9a8b15778adeeda8dfccd2af6ca86b7e6bda575 (diff)
downloadrails-b217354dbbbbb49a020b0073ebb62c5cd2d96140.tar.gz
rails-b217354dbbbbb49a020b0073ebb62c5cd2d96140.tar.bz2
rails-b217354dbbbbb49a020b0073ebb62c5cd2d96140.zip
Merge branch 'master' of github.com:rails/docrails
Diffstat (limited to 'activesupport/lib/active_support/testing')
-rw-r--r--activesupport/lib/active_support/testing/assertions.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/testing/assertions.rb b/activesupport/lib/active_support/testing/assertions.rb
index ae8c15d8bf..29305e0082 100644
--- a/activesupport/lib/active_support/testing/assertions.rb
+++ b/activesupport/lib/active_support/testing/assertions.rb
@@ -3,7 +3,7 @@ require 'active_support/core_ext/object/blank'
module ActiveSupport
module Testing
module Assertions
- # Assert that an expression is not truthy. Passes if <tt>object</tt> is
+ # Asserts that an expression is not truthy. Passes if <tt>object</tt> is
# +nil+ or +false+. "Truthy" means "considered true in a conditional"
# like <tt>if foo</tt>.
#