From 310ba0858fb8c8f34dd31cdd3b51fb3e0cae2f6e Mon Sep 17 00:00:00 2001 From: yxxhero <11087727+yxxhero@users.noreply.github.com> Date: Mon, 21 Apr 2025 14:02:22 +0800 Subject: [PATCH] style: Fix spacing in ComputePieceSize comment (#3969) Signed-off-by: yxxhero --- internal/util/util.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/util/util.go b/internal/util/util.go index ab71547e5..e0f6af620 100644 --- a/internal/util/util.go +++ b/internal/util/util.go @@ -28,7 +28,7 @@ const ( // ComputePieceSize computes the piece size with specified fileLength. // -// If the fileLength<0, which means failed to get fileLength +// If the fileLength < 0, which means failed to get fileLength // and then use the DefaultPieceSize. func ComputePieceSize(length int64) uint32 { if length <= 200*1024*1024 {