From 1154f90d2de6e930d3cbfcb1dd244984b2601c63 Mon Sep 17 00:00:00 2001 From: hagen1778 Date: Wed, 7 Aug 2024 15:54:15 +0200 Subject: [PATCH] lib/mergeset: fix typos in comments Signed-off-by: hagen1778 --- lib/mergeset/part_header.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/mergeset/part_header.go b/lib/mergeset/part_header.go index 28f539c95..31749ba55 100644 --- a/lib/mergeset/part_header.go +++ b/lib/mergeset/part_header.go @@ -124,7 +124,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 creation + // and the part directory is synced afterward. fs.MustWriteSync(metadataPath, metadata) }