@samitouri / QOSamiQemu / commits / 87f608e3c2

json-parser: fix formatting of comment

Signed-off-by: Paolo Bonzini <pbonzini@redhat.com> Message-ID: <20260713114622.1950506-1-pbonzini@redhat.com> Reviewed-by: Markus Armbruster <armbru@redhat.com> [Mea culpa] Signed-off-by: Markus Armbruster <armbru@redhat.com>

Paolo Bonzini committed Jul 13, 2026 at 13:46 UTC 87f608e3c20677e57fc1c854085218dab8a45946
1 file changed +4 -3
qobject/json-parser.c
+4 -3
@@ -29,9 +29,10 @@
29 * object, an error, or NULL (if the object is incomplete and no error
30 * happened) after every token. Therefore it has an explicit
31 * representation of its parser stack; each stack entry consists of a
32 - * parser state and a QObject: - a QList, for an array that is being
33 - * added to - a QDict, for a dictionary that is being added to - a
34 - * QString, for the key of the next pair that will be added to a QDict
32 + * parser state and a QObject:
33 + * - a QList, for an array that is being added to
34 + * - a QDict, for a dictionary that is being added to
35 + * - a QString, for the key of the next pair that will be added to a QDict
36 *
37 * The stack represents an arbitrary nesting of arrays and dictionaries
38 * (whose next key has been parsed); it can also have a dictionary whose