diff options
author | yuuji.yaginuma <yuuji.yaginuma@gmail.com> | 2014-10-31 09:39:40 +0900 |
---|---|---|
committer | yuuji.yaginuma <yuuji.yaginuma@gmail.com> | 2014-10-31 09:39:40 +0900 |
commit | a34db582049a5e802b6cde8a8bdf64c9a5734582 (patch) | |
tree | 21a2e04266807818d7785f945ffa4db6336fa7bf | |
parent | 4daebedcc41e35079c47d5f130f5c7ad12db8bbb (diff) | |
download | rails-a34db582049a5e802b6cde8a8bdf64c9a5734582.tar.gz rails-a34db582049a5e802b6cde8a8bdf64c9a5734582.tar.bz2 rails-a34db582049a5e802b6cde8a8bdf64c9a5734582.zip |
[ci skip] fix incorrect key in Active Support Instrumentation guide
-rw-r--r-- | guides/source/active_support_instrumentation.md | 10 |
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. |