chore: make function comment match function name

Signed-off-by: dufucun <dufuchun@sohu.com>
This commit is contained in:
dufucun 2025-04-16 10:13:02 +08:00 committed by Guillaume Lours
parent 2a84dfecfd
commit 8e2f799cd7
2 changed files with 2 additions and 2 deletions

View File

@ -25,7 +25,7 @@ import (
const QuietPeriod = 500 * time.Millisecond
// batchDebounceEvents groups identical file events within a sliding time window and writes the results to the returned
// BatchDebounceEvents groups identical file events within a sliding time window and writes the results to the returned
// channel.
//
// The returned channel is closed when the debouncer is stopped via context cancellation or by closing the input channel.

View File

@ -31,7 +31,7 @@ func NewDir(prefix string) (*TempDir, error) {
return NewDirAtRoot("", prefix)
}
// NewDir creates a new TempDir at the given root.
// NewDirAtRoot creates a new TempDir at the given root.
func NewDirAtRoot(root, prefix string) (*TempDir, error) {
tmpDir, err := os.MkdirTemp(root, prefix)
if err != nil {