From d493da562eb1b8dd1fb698c5bd0609268689a4fb Mon Sep 17 00:00:00 2001 From: hagen1778 Date: Tue, 21 Nov 2023 11:20:43 +0100 Subject: [PATCH] lib/storage: fix typo Signed-off-by: hagen1778 --- lib/storage/part_header.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/storage/part_header.go b/lib/storage/part_header.go index ee446a51f..ff1d16e94 100644 --- a/lib/storage/part_header.go +++ b/lib/storage/part_header.go @@ -173,7 +173,7 @@ func (ph *partHeader) MustWriteMetadata(partPath string) { } metadataPath := filepath.Join(partPath, metadataFilename) // There is no need in calling fs.MustWriteAtomic() here, - // since the file is created only once during part creatinng - // and the part directory is synced aftewards. + // since the file is created only once during part creating + // and the part directory is synced afterwards. fs.MustWriteSync(metadataPath, metadata) }