From: Markus Armbruster Date: Tue, 27 Feb 2024 11:39:20 +0000 (+0100) Subject: qga/qapi-schema: Fix guest-set-memory-blocks documentation X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=ab07e96c46c757ac1a020bd1cf4c81633fc88750;p=qemu.git qga/qapi-schema: Fix guest-set-memory-blocks documentation Documentation claims the command can "return NULL". "NULL" doesn't exist in JSON. "null" does, but the command returns lists, and null isn't. Correct documentation to "return an empty list". Signed-off-by: Markus Armbruster Message-ID: <20240227113921.236097-13-armbru@redhat.com> --- diff --git a/qga/qapi-schema.json b/qga/qapi-schema.json index 2ea1022092..9554b566a7 100644 --- a/qga/qapi-schema.json +++ b/qga/qapi-schema.json @@ -1176,9 +1176,9 @@ # @GuestMemoryBlockResponse, which is corresponding to the input # list. # -# Note: it will return NULL if the @mem-blks list was empty on -# input, or there is an error, and in this case, guest state will -# not be changed. +# Note: it will return an empty list if the @mem-blks list was +# empty on input, or there is an error, and in this case, guest +# state will not be changed. # # Since: 2.3 ##