aboutsummaryrefslogtreecommitdiff
path: root/qapi
diff options
context:
space:
mode:
authorMarkus Armbruster <armbru@redhat.com>2023-07-20 09:16:05 +0200
committerMarkus Armbruster <armbru@redhat.com>2023-07-26 14:51:36 +0200
commite893b9e3b3a6029384253f768cdc06969732e517 (patch)
treeebf7e3875ca0a2a67787df1bb7c05f8b4a986bb4 /qapi
parentdad3c9565d7347bd61d036f0a1f5e2735be92c9b (diff)
downloadqemu-e893b9e3b3a6029384253f768cdc06969732e517.zip
qemu-e893b9e3b3a6029384253f768cdc06969732e517.tar.gz
qemu-e893b9e3b3a6029384253f768cdc06969732e517.tar.bz2
qapi/block: Tidy up block-latency-histogram-set documentation
Examples come out like Example set new histograms for all io types with intervals [0, 10), [10, 50), [50, 100), [100, +inf): The sentence "set new histograms ..." starts with a lower case letter. Capitalize it. Same for the other examples. Signed-off-by: Markus Armbruster <armbru@redhat.com> Message-ID: <20230720071610.1096458-3-armbru@redhat.com> Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Diffstat (limited to 'qapi')
-rw-r--r--qapi/block.json8
1 files changed, 4 insertions, 4 deletions
diff --git a/qapi/block.json b/qapi/block.json
index 0f25ce3..535892f 100644
--- a/qapi/block.json
+++ b/qapi/block.json
@@ -547,7 +547,7 @@
#
# Example:
#
-# set new histograms for all io types with intervals [0, 10), [10,
+# Set new histograms for all io types with intervals [0, 10), [10,
# 50), [50, 100), [100, +inf):
#
# -> { "execute": "block-latency-histogram-set",
@@ -557,7 +557,7 @@
#
# Example:
#
-# set new histogram only for write, other histograms will remain not
+# Set new histogram only for write, other histograms will remain not
# changed (or not created):
#
# -> { "execute": "block-latency-histogram-set",
@@ -567,7 +567,7 @@
#
# Example:
#
-# set new histograms with the following intervals: read, flush: [0,
+# Set new histograms with the following intervals: read, flush: [0,
# 10), [10, 50), [50, 100), [100, +inf) write: [0, 1000), [1000,
# 5000), [5000, +inf)
#
@@ -579,7 +579,7 @@
#
# Example:
#
-# remove all latency histograms:
+# Remove all latency histograms:
#
# -> { "execute": "block-latency-histogram-set",
# "arguments": { "id": "drive0" } }