diff options
author | Arthur Nogueira Neves <github@arthurnn.com> | 2015-03-31 09:13:30 -0400 |
---|---|---|
committer | Arthur Nogueira Neves <github@arthurnn.com> | 2015-03-31 09:13:30 -0400 |
commit | bb4e385d761908a685aec0ca6effa146d759ef7e (patch) | |
tree | d3a8a291591b320968629442e68768181d8f9f0d /activesupport | |
parent | 347266280efd887fd6f41ac8583ba87c9281b22e (diff) | |
parent | fd94aa4d57a7552ad40c13226caba5b022800326 (diff) | |
download | rails-bb4e385d761908a685aec0ca6effa146d759ef7e.tar.gz rails-bb4e385d761908a685aec0ca6effa146d759ef7e.tar.bz2 rails-bb4e385d761908a685aec0ca6effa146d759ef7e.zip |
Merge pull request #19596 from yui-knk/fix/comment_alias_attribute
[ci skip] Replace `query methods` with `a predicate`
Diffstat (limited to 'activesupport')
-rw-r--r-- | activesupport/lib/active_support/core_ext/module/aliasing.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/core_ext/module/aliasing.rb b/activesupport/lib/active_support/core_ext/module/aliasing.rb index 25e138264e..a4c40b25ff 100644 --- a/activesupport/lib/active_support/core_ext/module/aliasing.rb +++ b/activesupport/lib/active_support/core_ext/module/aliasing.rb @@ -45,7 +45,7 @@ class Module end # Allows you to make aliases for attributes, which includes - # getter, setter, and query methods. + # getter, setter, and a predicate. # # class Content < ActiveRecord::Base # # has a title attribute |