Browse Source

chore: make function comment match function name

Signed-off-by: dufucun <[email protected]>
dufucun 7 months ago
parent
commit
8e2f799cd7
2 changed files with 2 additions and 2 deletions
  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 {