aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport
diff options
context:
space:
mode:
authorRonak Jangir <ronakjangir47@gmail.com>2015-10-07 21:07:46 +0530
committerRonak Jangir <ronakjangir47@gmail.com>2015-10-07 21:07:46 +0530
commit495722a95687e25114ae75608dd3107ac5d6611b (patch)
treed141452f4cdff2b2197fcbc8d30943cb65dc6642 /activesupport
parent7976b6d3069d18aa4279921e15d90ef13197fd78 (diff)
downloadrails-495722a95687e25114ae75608dd3107ac5d6611b.tar.gz
rails-495722a95687e25114ae75608dd3107ac5d6611b.tar.bz2
rails-495722a95687e25114ae75608dd3107ac5d6611b.zip
Fixed wording in Assertion docs, changed ‘Assert’ -> ‘Asserts’
Diffstat (limited to 'activesupport')
-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>.
#