From 7bbfaff1e089ced8876da43a34e962aa198cc491 Mon Sep 17 00:00:00 2001 From: Stefan Hanreich Date: Wed, 29 Mar 2023 14:34:33 +0200 Subject: [PATCH] json schema: improve description of bwlimit parameter This makes the description consistent with the other places that have bwlimit as a parameter as well. Signed-off-by: Stefan Hanreich --- src/PVE/JSONSchema.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/PVE/JSONSchema.pm b/src/PVE/JSONSchema.pm index 527e409..93dfcf9 100644 --- a/src/PVE/JSONSchema.pm +++ b/src/PVE/JSONSchema.pm @@ -670,7 +670,7 @@ my $bwlimit_format = { }; register_format('bwlimit', $bwlimit_format); register_standard_option('bwlimit', { - description => "Set bandwidth/io limits various operations.", + description => "Set I/O bandwidth limit for various operations (in KiB/s).", optional => 1, type => 'string', format => $bwlimit_format,