aboutsummaryrefslogtreecommitdiff
path: root/qapi
diff options
context:
space:
mode:
authorAndrea Bolognani <abologna@redhat.com>2022-05-03 09:37:31 +0200
committerMarkus Armbruster <armbru@redhat.com>2022-05-16 07:22:28 +0200
commit406dfba614edc8629f60f03eb7c26bf4e426137d (patch)
treeaa881250429dcae9aea59abfe1a6bd6cea6c8a43 /qapi
parentf39057d58b9edc37fd82e3ea8a034fc7353c46e8 (diff)
downloadqemu-406dfba614edc8629f60f03eb7c26bf4e426137d.zip
qemu-406dfba614edc8629f60f03eb7c26bf4e426137d.tar.gz
qemu-406dfba614edc8629f60f03eb7c26bf4e426137d.tar.bz2
qapi: Fix comment indentation
It should start on the very first column. Signed-off-by: Andrea Bolognani <abologna@redhat.com> Reviewed-by: Markus Armbruster <armbru@redhat.com> Message-Id: <20220503073737.84223-3-abologna@redhat.com> Reviewed-by: Markus Armbruster <armbru@redhat.com> Signed-off-by: Markus Armbruster <armbru@redhat.com>
Diffstat (limited to 'qapi')
-rw-r--r--qapi/ui.json30
1 files changed, 15 insertions, 15 deletions
diff --git a/qapi/ui.json b/qapi/ui.json
index 059302a..43e62ef 100644
--- a/qapi/ui.json
+++ b/qapi/ui.json
@@ -1250,21 +1250,21 @@
'*p2p': 'bool',
'*audiodev': 'str' } }
- ##
- # @DisplayGLMode:
- #
- # Display OpenGL mode.
- #
- # @off: Disable OpenGL (default).
- # @on: Use OpenGL, pick context type automatically.
- # Would better be named 'auto' but is called 'on' for backward
- # compatibility with bool type.
- # @core: Use OpenGL with Core (desktop) Context.
- # @es: Use OpenGL with ES (embedded systems) Context.
- #
- # Since: 3.0
- #
- ##
+##
+# @DisplayGLMode:
+#
+# Display OpenGL mode.
+#
+# @off: Disable OpenGL (default).
+# @on: Use OpenGL, pick context type automatically.
+# Would better be named 'auto' but is called 'on' for backward
+# compatibility with bool type.
+# @core: Use OpenGL with Core (desktop) Context.
+# @es: Use OpenGL with ES (embedded systems) Context.
+#
+# Since: 3.0
+#
+##
{ 'enum' : 'DisplayGLMode',
'data' : [ 'off', 'on', 'core', 'es' ] }