qapi/parser: fix comment phrasing
Plaintext sections can be one or more paragraphs, the original comment was a mistake. Signed-off-by: John Snow <jsnow@redhat.com> Message-ID: <20260611042332.482979-7-jsnow@redhat.com> Reviewed-by: Markus Armbruster <armbru@redhat.com> [Commit message tweaked] Signed-off-by: Markus Armbruster <armbru@redhat.com>
John Snow committed
Jun 11, 2026 at 00:23 UTC
57b425001d46c9e4ef060a33d98f5b8f5cca9a34
1 file changed
+1
-1
scripts/qapi/parser.py
+1
-1
@@ -631,7 +631,7 @@ class QAPISchemaParser:
631
line = self.get_doc_indented(doc)
632
no_more_args = True
633
else:
634
- # plain paragraph
634
+ # plain paragraph(s)
635
doc.ensure_untagged_section(self.info)
636
doc.append_line(line)
637
line = self.get_doc_paragraph(doc)