diff options
author | Markus Armbruster <armbru@redhat.com> | 2023-07-20 09:16:05 +0200 |
---|---|---|
committer | Markus Armbruster <armbru@redhat.com> | 2023-07-26 14:51:36 +0200 |
commit | e893b9e3b3a6029384253f768cdc06969732e517 (patch) | |
tree | ebf7e3875ca0a2a67787df1bb7c05f8b4a986bb4 /qapi | |
parent | dad3c9565d7347bd61d036f0a1f5e2735be92c9b (diff) |
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.json | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/qapi/block.json b/qapi/block.json index 0f25ce3961..535892fddc 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" } } |