diff options
author | Ronak Jangir <ronakjangir47@gmail.com> | 2015-10-07 21:07:46 +0530 |
---|---|---|
committer | Ronak Jangir <ronakjangir47@gmail.com> | 2015-10-07 21:07:46 +0530 |
commit | 495722a95687e25114ae75608dd3107ac5d6611b (patch) | |
tree | d141452f4cdff2b2197fcbc8d30943cb65dc6642 /activesupport/lib/active_support/testing | |
parent | 7976b6d3069d18aa4279921e15d90ef13197fd78 (diff) | |
download | rails-495722a95687e25114ae75608dd3107ac5d6611b.tar.gz rails-495722a95687e25114ae75608dd3107ac5d6611b.tar.bz2 rails-495722a95687e25114ae75608dd3107ac5d6611b.zip |
Fixed wording in Assertion docs, changed ‘Assert’ -> ‘Asserts’
Diffstat (limited to 'activesupport/lib/active_support/testing')
-rw-r--r-- | activesupport/lib/active_support/testing/assertions.rb | 2 |
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>. # |