aboutsummaryrefslogtreecommitdiffstats
path: root/guides
diff options
context:
space:
mode:
authorYves Senn <yves.senn@gmail.com>2015-09-08 13:47:31 +0200
committerYves Senn <yves.senn@gmail.com>2015-09-08 13:47:31 +0200
commit3e617bbf45655f251fb9fb89beebccdb0f3ced82 (patch)
tree070608c9b89ad59a1882675a79f571a0a9d8f729 /guides
parent8a639ffca6b89b84a14bcce6a178a2e6daa9f944 (diff)
parentdad0c2677cb94c286c67af5e6a32f7956e02aafe (diff)
downloadrails-3e617bbf45655f251fb9fb89beebccdb0f3ced82.tar.gz
rails-3e617bbf45655f251fb9fb89beebccdb0f3ced82.tar.bz2
rails-3e617bbf45655f251fb9fb89beebccdb0f3ced82.zip
Merge pull request #21530 from arvindmehra/am-ar-to-activerecord
Replace AR with ActiveRecord to make it more readable [ci skip]
Diffstat (limited to 'guides')
-rw-r--r--guides/source/3_2_release_notes.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/3_2_release_notes.md b/guides/source/3_2_release_notes.md
index c52c39b705..f6871c186e 100644
--- a/guides/source/3_2_release_notes.md
+++ b/guides/source/3_2_release_notes.md
@@ -327,7 +327,7 @@ Active Record
* Implemented `ActiveRecord::Relation#explain`.
-* Implements `AR::Base.silence_auto_explain` which allows the user to selectively disable automatic EXPLAINs within a block.
+* Implements `ActiveRecord::Base.silence_auto_explain` which allows the user to selectively disable automatic EXPLAINs within a block.
* Implements automatic EXPLAIN logging for slow queries. A new configuration parameter `config.active_record.auto_explain_threshold_in_seconds` determines what's to be considered a slow query. Setting that to nil disables this feature. Defaults are 0.5 in development mode, and nil in test and production modes. Rails 3.2 supports this feature in SQLite, MySQL (mysql2 adapter), and PostgreSQL.