aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source
diff options
context:
space:
mode:
authorarvind <bloomberg490@gmail.com>2015-09-07 19:57:51 +0530
committerarvind <bloomberg490@gmail.com>2015-09-08 16:02:16 +0530
commitdad0c2677cb94c286c67af5e6a32f7956e02aafe (patch)
tree32ca5ad6e57be7c28c4123361300635a29df9816 /guides/source
parente75b92c032ddbd0e664c4fd241bec5668e35ee96 (diff)
downloadrails-dad0c2677cb94c286c67af5e6a32f7956e02aafe.tar.gz
rails-dad0c2677cb94c286c67af5e6a32f7956e02aafe.tar.bz2
rails-dad0c2677cb94c286c67af5e6a32f7956e02aafe.zip
Replace AR with ActiveRecord to make it more readable [ci skip]
Diffstat (limited to 'guides/source')
-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.