@@ -61,7 +61,7 @@ private struct GlobalExplicitDepependencyTracker {
61
61
producerMap: inout [ Path : LibSwiftDriver . JobKey ] ) throws -> Set < LibSwiftDriver . JobKey > {
62
62
// Filter out "new" unique jobs and populate the `producerMap`
63
63
var jobKeys : Set < LibSwiftDriver . JobKey > = [ ]
64
- var jobKeyIndeces : [ ( Int , LibSwiftDriver . JobIndex ) ] = [ ]
64
+ var jobKeyIndices : [ ( Int , LibSwiftDriver . JobIndex ) ] = [ ]
65
65
for (index, job) in jobs. enumerated ( ) {
66
66
guard case let . explicitModule( uniqueID) = job. kind else {
67
67
throw StubError . error ( " Unexpected job in explicit module builds: \( job. descriptionForLifecycle) . " )
@@ -73,13 +73,13 @@ private struct GlobalExplicitDepependencyTracker {
73
73
} else {
74
74
trackerIndex = nextIndex
75
75
nextIndex = nextIndex + 1
76
- jobKeyIndeces . append ( ( index, trackerIndex) )
76
+ jobKeyIndices . append ( ( index, trackerIndex) )
77
77
}
78
78
try LibSwiftDriver . PlannedBuild. addProducts ( of: job, index: . explicitDependencyJob( trackerIndex) , knownJobs: [ ] , to: & producerMap)
79
79
}
80
80
81
81
// Once the producerMap has been populated, create the actual PlannedDriverJobs
82
- for (jobIndex, trackerIndex) in jobKeyIndeces {
82
+ for (jobIndex, trackerIndex) in jobKeyIndices {
83
83
let job = jobs [ jobIndex]
84
84
guard case let . explicitModule( uniqueID) = job. kind else {
85
85
throw StubError . error ( " Unexpected job in explicit module builds: \( job. descriptionForLifecycle) . " )
@@ -639,7 +639,7 @@ public final class SwiftCachedCompilation {
639
639
}
640
640
}
641
641
642
- /// SwiftCachedOuput wraps CachedOutput from SwiftDriver
642
+ /// SwiftCachedOutput wraps CachedOutput from SwiftDriver
643
643
public final class SwiftCachedOutput {
644
644
let cachedOutput : CachedOutput
645
645
0 commit comments