Skip to content

Commit

Permalink
fix typos
Browse files Browse the repository at this point in the history
Signed-off-by: Jes Cok <xigua67damn@gmail.com>
  • Loading branch information
callthingsoff authored and ndeloof committed Jun 27, 2023
1 parent 035276e commit 4c85ca1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pkg/e2e/compose_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"))

Expand Down
2 changes: 1 addition & 1 deletion pkg/watch/notify.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down
2 changes: 1 addition & 1 deletion pkg/watch/paths.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
Expand Down

0 comments on commit 4c85ca1

Please sign in to comment.