From ab293d88ea10ac274670ec6e8f996afe7b7f4aff Mon Sep 17 00:00:00 2001 From: Jonathon Anderson Date: Mon, 4 Nov 2024 23:04:25 -0700 Subject: [PATCH] Fix extraneous whitespace in flag definition Signed-off-by: Jonathon Anderson --- internal/pkg/node/datastructure.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/pkg/node/datastructure.go b/internal/pkg/node/datastructure.go index 0efb21fa..27acdcf4 100644 --- a/internal/pkg/node/datastructure.go +++ b/internal/pkg/node/datastructure.go @@ -107,7 +107,7 @@ Partitions map */ type Partition struct { Number string `yaml:"number,omitempty" lopt:"partnumber" comment:"set the partition number, if not set next free slot is used" type:"uint"` - SizeMiB string `yaml:"size_mib,omitempty" lopt:"partsize " comment:"set the size of the partition, if not set maximal possible size is used" type:"uint"` + SizeMiB string `yaml:"size_mib,omitempty" lopt:"partsize" comment:"set the size of the partition, if not set maximal possible size is used" type:"uint"` StartMiB string `yaml:"start_mib,omitempty" comment:"the start of the partition" type:"uint"` TypeGuid string `yaml:"type_guid,omitempty" comment:"Linux filesystem data will be used if empty"` Guid string `yaml:"guid,omitempty" comment:"the GPT unique partition GUID"`