diff options
author | Vipul A M <vipulnsward@gmail.com> | 2018-11-05 01:47:16 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-05 01:47:16 +0530 |
commit | c823f9252be2552c65bb1370ccf42a14de461439 (patch) | |
tree | cbc89e4ff5136f33a576f5a56aa613e2bfa2e497 /guides | |
parent | caad9e1080e5b98bc8b3c40c0f2d226a3a9e859a (diff) | |
parent | 0f19d7b3c2f90d8cb67c323a1233cfeb7ce96eee (diff) | |
download | rails-c823f9252be2552c65bb1370ccf42a14de461439.tar.gz rails-c823f9252be2552c65bb1370ccf42a14de461439.tar.bz2 rails-c823f9252be2552c65bb1370ccf42a14de461439.zip |
Merge pull request #34377 from nickcoyne/nickcoyne-patch-1
Fix typo [ci-skip]
Diffstat (limited to 'guides')
-rw-r--r-- | guides/source/debugging_rails_applications.md | 2 |
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. |