Răsfoiți Sursa

chore: make function comment match function name

Signed-off-by: dufucun <[email protected]>
dufucun 9 luni în urmă
părinte
comite
8e2f799cd7
2 a modificat fișierele cu 2 adăugiri și 2 ștergeri
  1. 1 1
      pkg/watch/debounce.go
  2. 1 1
      pkg/watch/temp.go

+ 1 - 1
pkg/watch/debounce.go

@@ -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.

+ 1 - 1
pkg/watch/temp.go

@@ -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 {