diff options
author | Vipul A M <vipulnsward@gmail.com> | 2019-02-04 23:43:05 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-02-04 23:43:05 +0530 |
commit | 744dc1090ddcd97fde87da3333e3984255c0d55a (patch) | |
tree | 089bd270626f02a22b1b3717f6f021e2a4a92fbc | |
parent | 5da63c1d5664b6499be3c05f12bedddd2079ffb4 (diff) | |
parent | df55d28184dc3c5e2b62b1d8a1c742f3c3374e5a (diff) | |
download | rails-744dc1090ddcd97fde87da3333e3984255c0d55a.tar.gz rails-744dc1090ddcd97fde87da3333e3984255c0d55a.tar.bz2 rails-744dc1090ddcd97fde87da3333e3984255c0d55a.zip |
Merge pull request #35152 from scpike/guides-link-to-core-ext-string-inquiry-source
Add a link to where "inquiry" is defined in ActiveSupport docs [ci skip]
-rw-r--r-- | guides/source/active_support_core_extensions.md | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/guides/source/active_support_core_extensions.md b/guides/source/active_support_core_extensions.md index 3db46bc42e..903f39994f 100644 --- a/guides/source/active_support_core_extensions.md +++ b/guides/source/active_support_core_extensions.md @@ -1201,6 +1201,8 @@ The `inquiry` method converts a string into a `StringInquirer` object making equ "active".inquiry.inactive? # => false ``` +NOTE: Defined in `active_support/core_ext/string/inquiry.rb`. + ### `starts_with?` and `ends_with?` Active Support defines 3rd person aliases of `String#start_with?` and `String#end_with?`: |