Message ID | 20241217091504.16416-1-victortoso@redhat.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | qapi: fix colon in Since tag section | expand |
Victor Toso <victortoso@redhat.com> writes: > As described in docs/devel/qapi-code-gen.rst line 998, > there should be no space between "Since" and ":". > > Signed-off-by: Victor Toso <victortoso@redhat.com> > --- > qapi/cxl.json | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/qapi/cxl.json b/qapi/cxl.json > index 9f65589bce..dd947d3bbc 100644 > --- a/qapi/cxl.json > +++ b/qapi/cxl.json > @@ -460,7 +460,7 @@ > # > # @unstable: For now this command is subject to change. > # > -# Since : 9.1 > +# Since: 9.1 > ## > { 'command': 'cxl-add-dynamic-capacity', > 'data': { 'path': 'str', > @@ -539,7 +539,7 @@ > # > # @unstable: For now this command is subject to change. > # > -# Since : 9.1 > +# Since: 9.1 > ## > { 'command': 'cxl-release-dynamic-capacity', > 'data': { 'path': 'str', Reviewed-by: Markus Armbruster <armbru@redhat.com> and queued, thanks!
diff --git a/qapi/cxl.json b/qapi/cxl.json index 9f65589bce..dd947d3bbc 100644 --- a/qapi/cxl.json +++ b/qapi/cxl.json @@ -460,7 +460,7 @@ # # @unstable: For now this command is subject to change. # -# Since : 9.1 +# Since: 9.1 ## { 'command': 'cxl-add-dynamic-capacity', 'data': { 'path': 'str', @@ -539,7 +539,7 @@ # # @unstable: For now this command is subject to change. # -# Since : 9.1 +# Since: 9.1 ## { 'command': 'cxl-release-dynamic-capacity', 'data': { 'path': 'str',
As described in docs/devel/qapi-code-gen.rst line 998, there should be no space between "Since" and ":". Signed-off-by: Victor Toso <victortoso@redhat.com> --- qapi/cxl.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)