diff options
author | Markus Armbruster <armbru@redhat.com> | 2021-09-17 16:31:12 +0200 |
---|---|---|
committer | Markus Armbruster <armbru@redhat.com> | 2021-09-25 06:55:54 +0200 |
commit | 4cfd6537e42b108441852b34fc15933fc66628a1 (patch) | |
tree | dd71f4bc34a66142b665cc4756a92c3276cb7e64 /tests/qapi-schema/doc-good.json | |
parent | 11a11998460ed84d9a127c025f50f7234e5a483f (diff) |
qapi: Tidy up unusual line breaks
Break lines between members instead of within members.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Message-Id: <20210917143134.412106-2-armbru@redhat.com>
Diffstat (limited to 'tests/qapi-schema/doc-good.json')
-rw-r--r-- | tests/qapi-schema/doc-good.json | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/qapi-schema/doc-good.json b/tests/qapi-schema/doc-good.json index e0027e4cf6..cbf5c56c4b 100644 --- a/tests/qapi-schema/doc-good.json +++ b/tests/qapi-schema/doc-good.json @@ -60,8 +60,8 @@ # # @two is undocumented ## -{ 'enum': 'Enum', 'data': - [ { 'name': 'one', 'if': 'IFONE' }, 'two' ], +{ 'enum': 'Enum', + 'data': [ { 'name': 'one', 'if': 'IFONE' }, 'two' ], 'features': [ 'enum-feat' ], 'if': 'IFCOND' } |