diff options
author | Zachary Scott <e@zzak.io> | 2015-05-10 10:12:44 -0700 |
---|---|---|
committer | Zachary Scott <e@zzak.io> | 2015-05-10 10:12:44 -0700 |
commit | ee440b6ebde7a5f5a53ff848383f2b847ad44a36 (patch) | |
tree | 93715230fe45f83fb067dec10006f293684785a0 | |
parent | 3aca4dd1afd3f618ea7a6b2a34af15f86b0ad7b7 (diff) | |
parent | 663ffe921628e31a537d39a772781f85d6cb255f (diff) | |
download | rails-ee440b6ebde7a5f5a53ff848383f2b847ad44a36.tar.gz rails-ee440b6ebde7a5f5a53ff848383f2b847ad44a36.tar.bz2 rails-ee440b6ebde7a5f5a53ff848383f2b847ad44a36.zip |
Merge pull request #20101 from imtayadeway/tw/active-record-querying-docs
[ci skip] Improve phrasing on #explain pretty printing.
-rw-r--r-- | guides/source/active_record_querying.md | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/guides/source/active_record_querying.md b/guides/source/active_record_querying.md index 2f10bc4e7c..92767491d7 100644 --- a/guides/source/active_record_querying.md +++ b/guides/source/active_record_querying.md @@ -1787,8 +1787,9 @@ EXPLAIN for: SELECT `users`.* FROM `users` INNER JOIN `articles` ON `articles`.` under MySQL. -Active Record performs a pretty printing that emulates the one of the database -shells. So, the same query running with the PostgreSQL adapter would yield instead +Active Record performs a pretty printing that emulates that of the +corresponding database shell. So, the same query running with the +PostgreSQL adapter would yield instead ``` EXPLAIN for: SELECT "users".* FROM "users" INNER JOIN "articles" ON "articles"."user_id" = "users"."id" WHERE "users"."id" = 1 |