diff options
author | Vijay Dev <vijaydev.cse@gmail.com> | 2015-04-14 02:07:26 +0000 |
---|---|---|
committer | Vijay Dev <vijaydev.cse@gmail.com> | 2015-04-14 02:07:26 +0000 |
commit | 8ac458ad2e252ba041d9f4e42b94bd5997a622be (patch) | |
tree | 3ecebd40ec582f6eb6049b01ec5137bc7b9415b3 /activesupport | |
parent | ea97c763c18b4f7534589665c73d501fcec229a3 (diff) | |
parent | 8ec88a1b9eee2f259fd9c4de87b9d7d0d4b21fba (diff) | |
download | rails-8ac458ad2e252ba041d9f4e42b94bd5997a622be.tar.gz rails-8ac458ad2e252ba041d9f4e42b94bd5997a622be.tar.bz2 rails-8ac458ad2e252ba041d9f4e42b94bd5997a622be.zip |
Merge branch 'master' of github.com:rails/docrails
Diffstat (limited to 'activesupport')
-rw-r--r-- | activesupport/lib/active_support/core_ext/object/with_options.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/core_ext/object/with_options.rb b/activesupport/lib/active_support/core_ext/object/with_options.rb index 7d38e1d134..513c8b1d55 100644 --- a/activesupport/lib/active_support/core_ext/object/with_options.rb +++ b/activesupport/lib/active_support/core_ext/object/with_options.rb @@ -7,7 +7,7 @@ class Object # provided. Each method called on the block variable must take an options # hash as its final argument. # - # Without <tt>with_options></tt>, this code contains duplication: + # Without <tt>with_options</tt>, this code contains duplication: # # class Account < ActiveRecord::Base # has_many :customers, dependent: :destroy |