diff options
author | Ryuta Kamizono <kamipo@gmail.com> | 2016-09-27 06:14:31 +0900 |
---|---|---|
committer | Ryuta Kamizono <kamipo@gmail.com> | 2016-09-27 06:14:31 +0900 |
commit | 4dde1a05d03a03debd64befdd78a0006c30aa8d8 (patch) | |
tree | ed6a284f6a284019d16703a84e0d0940d7b4a918 | |
parent | 134a008e79f367a40272fe3cace1424a23c50701 (diff) | |
download | rails-4dde1a05d03a03debd64befdd78a0006c30aa8d8.tar.gz rails-4dde1a05d03a03debd64befdd78a0006c30aa8d8.tar.bz2 rails-4dde1a05d03a03debd64befdd78a0006c30aa8d8.zip |
Fix doc format for `RecordFetchWarning` [ci skip]
-rw-r--r-- | activerecord/lib/active_record/relation/record_fetch_warning.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/activerecord/lib/active_record/relation/record_fetch_warning.rb b/activerecord/lib/active_record/relation/record_fetch_warning.rb index dbd08811fa..31544c730e 100644 --- a/activerecord/lib/active_record/relation/record_fetch_warning.rb +++ b/activerecord/lib/active_record/relation/record_fetch_warning.rb @@ -2,15 +2,15 @@ module ActiveRecord class Relation module RecordFetchWarning # When this module is prepended to ActiveRecord::Relation and - # `config.active_record.warn_on_records_fetched_greater_than` is + # +config.active_record.warn_on_records_fetched_greater_than+ is # set to an integer, if the number of records a query returns is - # greater than the value of `warn_on_records_fetched_greater_than`, + # greater than the value of +warn_on_records_fetched_greater_than+, # a warning is logged. This allows for the detection of queries that # return a large number of records, which could cause memory bloat. # # In most cases, fetching large number of records can be performed # efficiently using the ActiveRecord::Batches methods. - # See active_record/lib/relation/batches.rb for more information. + # See ActiveRecord::Batches for more information. def exec_queries QueryRegistry.reset |