style: Fix spacing in ComputePieceSize comment (#3969)

Signed-off-by: yxxhero <aiopsclub@163.com>
This commit is contained in:
yxxhero 2025-04-21 14:02:22 +08:00 committed by GitHub
parent e910d21f01
commit 310ba0858f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,7 @@ const (
// ComputePieceSize computes the piece size with specified fileLength. // 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. // and then use the DefaultPieceSize.
func ComputePieceSize(length int64) uint32 { func ComputePieceSize(length int64) uint32 {
if length <= 200*1024*1024 { if length <= 200*1024*1024 {