diff --git a/pkg/e2e/compose_test.go b/pkg/e2e/compose_test.go index dad8a0d1d..67cbeb722 100644 --- a/pkg/e2e/compose_test.go +++ b/pkg/e2e/compose_test.go @@ -277,7 +277,7 @@ networks: }) } -func TestStopWithDependeciesAttached(t *testing.T) { +func TestStopWithDependenciesAttached(t *testing.T) { const projectName = "compose-e2e-stop-with-deps" c := NewParallelCLI(t, WithEnv("COMMAND=echo hello")) diff --git a/pkg/watch/notify.go b/pkg/watch/notify.go index 3a6398a0e..7f28d84b6 100644 --- a/pkg/watch/notify.go +++ b/pkg/watch/notify.go @@ -68,7 +68,7 @@ type Notify interface { // - Watch /src/repo, but ignore /src/repo/.git // - Watch /src/repo, but ignore everything in /src/repo/bazel-bin except /src/repo/bazel-bin/app-binary // -// The PathMatcher inteface helps us manage these ignores. +// The PathMatcher interface helps us manage these ignores. type PathMatcher interface { Matches(file string) (bool, error) diff --git a/pkg/watch/paths.go b/pkg/watch/paths.go index ef33a751a..4d057c25b 100644 --- a/pkg/watch/paths.go +++ b/pkg/watch/paths.go @@ -59,7 +59,7 @@ func dedupePathsForRecursiveWatcher(paths []string) []string { } if IsChild(current, existing) { - // Mark the element empty fo removal. + // Mark the element empty for removal. result[i] = "" hasRemovals = true }