Skip to content

Commit 44855b2

Browse files
author
David Ungar
committed
fix typ
1 parent f0abc07 commit 44855b2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Sources/SwiftDriver/IncrementalCompilation/ModuleDependencyGraph.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -180,9 +180,9 @@ extension ModuleDependencyGraph {
180180
collectSwiftDepsUsing(dependencySource: changedSource)
181181

182182
return allDependencySourcesToRecompile.compactMap {
183-
depedencySource in
184-
guard depedencySource != changedSource else {return nil}
185-
let dependentSource = inputDependencySourceMap[depedencySource]
183+
dependencySource in
184+
guard dependencySource != changedSource else {return nil}
185+
let dependentSource = inputDependencySourceMap[dependencySource]
186186
info.reporter?.report(
187187
"Found dependent of \(input.file.basename):", dependentSource)
188188
return dependentSource

0 commit comments

Comments
 (0)