aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAbdelkader Boudih <terminale@gmail.com>2014-10-31 00:51:18 +0000
committerAbdelkader Boudih <terminale@gmail.com>2014-10-31 00:51:18 +0000
commit19c893b60d9b28649839de64b55dc6d02890792e (patch)
tree21a2e04266807818d7785f945ffa4db6336fa7bf
parent4daebedcc41e35079c47d5f130f5c7ad12db8bbb (diff)
parenta34db582049a5e802b6cde8a8bdf64c9a5734582 (diff)
downloadrails-19c893b60d9b28649839de64b55dc6d02890792e.tar.gz
rails-19c893b60d9b28649839de64b55dc6d02890792e.tar.bz2
rails-19c893b60d9b28649839de64b55dc6d02890792e.zip
Merge pull request #17451 from y-yagi/fix_asi_guide
[ci skip] fix incorrect key in Active Support Instrumentation guide
-rw-r--r--guides/source/active_support_instrumentation.md10
1 files changed, 5 insertions, 5 deletions
diff --git a/guides/source/active_support_instrumentation.md b/guides/source/active_support_instrumentation.md
index 83f3645b31..9dfacce560 100644
--- a/guides/source/active_support_instrumentation.md
+++ b/guides/source/active_support_instrumentation.md
@@ -225,11 +225,11 @@ Active Record
### sql.active_record
-| Key | Value |
-| ------------ | --------------------- |
-| `:sql` | SQL statement |
-| `:name` | Name of the operation |
-| `:object_id` | `self.object_id` |
+| Key | Value |
+| ---------------- | --------------------- |
+| `:sql` | SQL statement |
+| `:name` | Name of the operation |
+| `:connection_id` | `self.object_id` |
INFO. The adapters will add their own data as well.