Skip to content

Commit 88ef036

Browse files
committed
Fix typo on active record querying running explain
1 parent 4077fe0 commit 88ef036

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

guides/source/active_record_querying.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2635,9 +2635,9 @@ EXPLAIN SELECT `customers`.* FROM `customers` INNER JOIN `orders` ON `orders`.`c
26352635
2 rows in set (0.00 sec)
26362636
```
26372637

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:
2638+
Active Record performs pretty printing that emulates the output of
2639+
the corresponding database shell. So, the same query run with the
2640+
PostgreSQL adapter would instead yield:
26412641

26422642
```sql
26432643
EXPLAIN SELECT "customers".* FROM "customers" INNER JOIN "orders" ON "orders"."customer_id" = "customers"."id" WHERE "customers"."id" = $1 [["id", 1]]

0 commit comments

Comments
 (0)