We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4077fe0 commit 88ef036Copy full SHA for 88ef036
guides/source/active_record_querying.md
@@ -2635,9 +2635,9 @@ EXPLAIN SELECT `customers`.* FROM `customers` INNER JOIN `orders` ON `orders`.`c
2635
2 rows in set (0.00 sec)
2636
```
2637
2638
-Active Record performs a pretty printing that emulates that of the
2639
-corresponding database shell. So, the same query running with the
2640
-PostgreSQL adapter would yield instead:
+Active Record performs pretty printing that emulates the output of
+the corresponding database shell. So, the same query run with the
+PostgreSQL adapter would instead yield:
2641
2642
```sql
2643
EXPLAIN SELECT "customers".* FROM "customers" INNER JOIN "orders" ON "orders"."customer_id" = "customers"."id" WHERE "customers"."id" = $1 [["id", 1]]
0 commit comments