From 40144c4adf7e8de21d613c7c0e37bafbd8416417 Mon Sep 17 00:00:00 2001 From: kenjis Date: Tue, 20 Feb 2024 10:58:20 +0900 Subject: [PATCH] docs: add empty line --- user_guide_src/source/database/events.rst | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/user_guide_src/source/database/events.rst b/user_guide_src/source/database/events.rst index 8cefcad22dbf..55a1ef24e505 100644 --- a/user_guide_src/source/database/events.rst +++ b/user_guide_src/source/database/events.rst @@ -18,10 +18,13 @@ The Events DBQuery ======= -This event is triggered whenever a new query has been run, whether successful or not. The only parameter is -a :doc:`Query ` instance of the current query. You could use this to display all queries -in STDOUT, or logging to a file, or even creating tools to do automatic query analysis to help you spot -potentially missing indexes, slow queries, etc. +This event is triggered whenever a new query has been run, whether successful or +not. The only parameter is a :doc:`Query ` instance of the +current query. + +You could use this to display all queries in STDOUT, or logging to a file, or +even creating tools to do automatic query analysis to help you spot potentially +missing indexes, slow queries, etc. An example usage might be: