[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 04/12] qapi: Tidy up indentation of add_client's example
From: |
Markus Armbruster |
Subject: |
[PATCH 04/12] qapi: Tidy up indentation of add_client's example |
Date: |
Fri, 22 Mar 2024 15:09:02 +0100 |
Commit d23055b8db8 (qapi: Require descriptions and tagged sections to
be indented) indented add_client's example too much. Revert that.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
---
qapi/misc.json | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/qapi/misc.json b/qapi/misc.json
index 1b0c5dad88..ec30e5c570 100644
--- a/qapi/misc.json
+++ b/qapi/misc.json
@@ -32,9 +32,9 @@
#
# Example:
#
-# -> { "execute": "add_client", "arguments": { "protocol": "vnc",
-# "fdname": "myclient" } }
-# <- { "return": {} }
+# -> { "execute": "add_client", "arguments": { "protocol": "vnc",
+# "fdname": "myclient" } }
+# <- { "return": {} }
##
{ 'command': 'add_client',
'data': { 'protocol': 'str', 'fdname': 'str', '*skipauth': 'bool',
@@ -142,7 +142,7 @@
# option was passed on the command line.
#
# In the "suspended" state, it will completely stop the VM and
-# cause a transition to the "paused" state. (Since 9.0)
+# cause a transition to the "paused" state. (Since 9.0)
#
# Example:
#
--
2.44.0
- [PATCH 00/12] qapi: Fairly trivial documentation work, Markus Armbruster, 2024/03/22
- [PATCH 03/12] qapi: Tidy up block-latency-histogram-set documentation some more, Markus Armbruster, 2024/03/22
- [PATCH 04/12] qapi: Tidy up indentation of add_client's example,
Markus Armbruster <=
- [PATCH 02/12] qapi: Expand a few awkward abbreviations in documentation, Markus Armbruster, 2024/03/22
- [PATCH 01/12] qapi: Drop stray Arguments: line from qmp_capabilities docs, Markus Armbruster, 2024/03/22
- [PATCH 08/12] qapi: Start sentences with a capital letter, end them with a period, Markus Armbruster, 2024/03/22
- [PATCH 05/12] qapi: Fix argument markup in drive-mirror documentation, Markus Armbruster, 2024/03/22
- [PATCH 07/12] qapi: Fix abbreviation punctuation in doc comments, Markus Armbruster, 2024/03/22
- [PATCH 09/12] qapi: Don't repeat member type in its documentation text, Markus Armbruster, 2024/03/22
- [PATCH 11/12] qapi: Correct documentation indentation and whitespace, Markus Armbruster, 2024/03/22
- [PATCH 12/12] qga/qapi-schema: Refill doc comments to conform to current conventions, Markus Armbruster, 2024/03/22