aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/testing/assertions.rb
diff options
context:
space:
mode:
Diffstat (limited to 'activesupport/lib/active_support/testing/assertions.rb')
-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 411bb76a42..ee1a647ed8 100644
--- a/activesupport/lib/active_support/testing/assertions.rb
+++ b/activesupport/lib/active_support/testing/assertions.rb
@@ -90,7 +90,7 @@ module ActiveSupport
assert object.blank?, message
end
- # Test if an expression is not blank. Passes <tt>if object.present?</tt> is +true+.
+ # Test if an expression is not blank. Passes if <tt>object.present?</tt> is +true+.
#
# assert_present({ data: 'x' }) # => true
# assert_present({}) # => {} is blank