From 68c3142605f0381818ff71c248b59f688314f362 Mon Sep 17 00:00:00 2001 From: Fiona Ebner Date: Wed, 8 Oct 2025 15:09:16 +0200 Subject: [PATCH] api schema: storage: config: fix typos in return schema description Signed-off-by: Fiona Ebner --- src/PVE/API2/Storage/Config.pm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/PVE/API2/Storage/Config.pm b/src/PVE/API2/Storage/Config.pm index 03440cf..34f2d85 100755 --- a/src/PVE/API2/Storage/Config.pm +++ b/src/PVE/API2/Storage/Config.pm @@ -218,13 +218,13 @@ __PACKAGE__->register_method({ enum => $storage_type_enum, }, config => { - description => "Partial, possible server generated, configuration properties.", + description => "Partial, possibly server generated, configuration properties.", type => 'object', optional => 1, additionalProperties => 1, properties => { 'encryption-key' => { - description => "The, possible auto-generated, encryption-key.", + description => "The, possibly auto-generated, encryption-key.", optional => 1, type => 'string', }, @@ -318,13 +318,13 @@ __PACKAGE__->register_method({ enum => $storage_type_enum, }, config => { - description => "Partial, possible server generated, configuration properties.", + description => "Partial, possibly server generated, configuration properties.", type => 'object', optional => 1, additionalProperties => 1, properties => { 'encryption-key' => { - description => "The, possible auto-generated, encryption-key.", + description => "The, possibly auto-generated, encryption-key.", optional => 1, type => 'string', },