Fixed typo errChuckSize -> errChunkSize

This commit is contained in:
Klaas Freitag 2024-12-18 15:49:28 +01:00
parent 6261312eb4
commit 587bf80f82
1 changed files with 1 additions and 1 deletions

View File

@ -7,7 +7,7 @@ import (
var ( var (
// ErrChuckSize is returned when the chunk size is zero // ErrChuckSize is returned when the chunk size is zero
ErrChuckSize = errors.New("tus chunk size must be greater than zero") ErrChunkSize = errors.New("tus chunk size must be greater than zero")
// ErrNilConfig is returned when the logger is nil // ErrNilConfig is returned when the logger is nil
ErrNilLogger = errors.New("tus logger can't be nil") ErrNilLogger = errors.New("tus logger can't be nil")
// ErrNilStore is returned when the store is nil // ErrNilStore is returned when the store is nil