From 87f608e3c20677e57fc1c854085218dab8a45946 Mon Sep 17 00:00:00 2001 From: Paolo Bonzini Date: Mon, 13 Jul 2026 13:46:22 +0200 Subject: [PATCH] json-parser: fix formatting of comment Signed-off-by: Paolo Bonzini Message-ID: <20260713114622.1950506-1-pbonzini@redhat.com> Reviewed-by: Markus Armbruster [Mea culpa] Signed-off-by: Markus Armbruster --- qobject/json-parser.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/qobject/json-parser.c b/qobject/json-parser.c index 5935730c0c..6b1b4762bd 100644 --- a/qobject/json-parser.c +++ b/qobject/json-parser.c @@ -29,9 +29,10 @@ * object, an error, or NULL (if the object is incomplete and no error * happened) after every token. Therefore it has an explicit * representation of its parser stack; each stack entry consists of a - * parser state and a QObject: - a QList, for an array that is being - * added to - a QDict, for a dictionary that is being added to - a - * QString, for the key of the next pair that will be added to a QDict + * parser state and a QObject: + * - a QList, for an array that is being added to + * - a QDict, for a dictionary that is being added to + * - a QString, for the key of the next pair that will be added to a QDict * * The stack represents an arbitrary nesting of arrays and dictionaries * (whose next key has been parsed); it can also have a dictionary whose