fix typos

Signed-off-by: Jes Cok <xigua67damn@gmail.com>
This commit is contained in:
Jes Cok 2023-06-25 19:52:03 +08:00 committed by Nicolas De loof
parent 035276e027
commit 1a41678c58
3 changed files with 3 additions and 3 deletions

View File

@ -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"))

View File

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

View File

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