aboutsummaryrefslogtreecommitdiffstats
path: root/guides
diff options
context:
space:
mode:
authorNick Coyne <nick@codevader.com>2018-11-05 08:46:44 +1300
committerGitHub <noreply@github.com>2018-11-05 08:46:44 +1300
commit0f19d7b3c2f90d8cb67c323a1233cfeb7ce96eee (patch)
treecbc89e4ff5136f33a576f5a56aa613e2bfa2e497 /guides
parentcaad9e1080e5b98bc8b3c40c0f2d226a3a9e859a (diff)
downloadrails-0f19d7b3c2f90d8cb67c323a1233cfeb7ce96eee.tar.gz
rails-0f19d7b3c2f90d8cb67c323a1233cfeb7ce96eee.tar.bz2
rails-0f19d7b3c2f90d8cb67c323a1233cfeb7ce96eee.zip
Fix typo
Just a small typo fix for the recently merged #34257
Diffstat (limited to 'guides')
-rw-r--r--guides/source/debugging_rails_applications.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/debugging_rails_applications.md b/guides/source/debugging_rails_applications.md
index 7f7766e7d7..3a383cbd4d 100644
--- a/guides/source/debugging_rails_applications.md
+++ b/guides/source/debugging_rails_applications.md
@@ -232,7 +232,7 @@ irb(main):003:0> Article.pamplemousse
=> #<Comment id: 2, author: "1", body: "Well, actually...", article_id: 1, created_at: "2018-10-19 00:56:10", updated_at: "2018-10-19 00:56:10">
```
-Below each database statement you can see arrows pointing to the specific source filename (and line number) of the method that resulted in a database call. This can help you identity and address performance problems caused by N+1 queries: single database queries that generates multiple additional queries.
+Below each database statement you can see arrows pointing to the specific source filename (and line number) of the method that resulted in a database call. This can help you identify and address performance problems caused by N+1 queries: single database queries that generates multiple additional queries.
Verbose query logs are enabled by default in the development environment logs after Rails 5.2.