@@ -51,7 +51,7 @@ public struct BuildManifest {
51
51
inputs: [ Node ] ,
52
52
outputs: [ Node ]
53
53
) {
54
- assert ( commands [ name] == nil , " aleady had a command named '\( name) ' " )
54
+ assert ( commands [ name] == nil , " already had a command named '\( name) ' " )
55
55
let tool = PhonyTool ( inputs: inputs, outputs: outputs)
56
56
commands [ name] = Command ( name: name, tool: tool)
57
57
}
@@ -61,7 +61,7 @@ public struct BuildManifest {
61
61
inputs: [ Node ] ,
62
62
outputs: [ Node ]
63
63
) {
64
- assert ( commands [ name] == nil , " aleady had a command named '\( name) ' " )
64
+ assert ( commands [ name] == nil , " already had a command named '\( name) ' " )
65
65
let tool = TestDiscoveryTool ( inputs: inputs, outputs: outputs)
66
66
commands [ name] = Command ( name: name, tool: tool)
67
67
}
@@ -71,7 +71,7 @@ public struct BuildManifest {
71
71
inputs: [ Node ] ,
72
72
outputs: [ Node ]
73
73
) {
74
- assert ( commands [ name] == nil , " aleady had a command named '\( name) ' " )
74
+ assert ( commands [ name] == nil , " already had a command named '\( name) ' " )
75
75
let tool = CopyTool ( inputs: inputs, outputs: outputs)
76
76
commands [ name] = Command ( name: name, tool: tool)
77
77
}
@@ -81,7 +81,7 @@ public struct BuildManifest {
81
81
inputs: [ Node ] ,
82
82
outputs: [ Node ]
83
83
) {
84
- assert ( commands [ name] == nil , " aleady had a command named '\( name) ' " )
84
+ assert ( commands [ name] == nil , " already had a command named '\( name) ' " )
85
85
let tool = PackageStructureTool ( inputs: inputs, outputs: outputs)
86
86
commands [ name] = Command ( name: name, tool: tool)
87
87
}
@@ -91,7 +91,7 @@ public struct BuildManifest {
91
91
inputs: [ Node ] ,
92
92
outputs: [ Node ]
93
93
) {
94
- assert ( commands [ name] == nil , " aleady had a command named '\( name) ' " )
94
+ assert ( commands [ name] == nil , " already had a command named '\( name) ' " )
95
95
let tool = ArchiveTool ( inputs: inputs, outputs: outputs)
96
96
commands [ name] = Command ( name: name, tool: tool)
97
97
}
@@ -106,7 +106,7 @@ public struct BuildManifest {
106
106
workingDirectory: String ? = nil ,
107
107
allowMissingInputs: Bool = false
108
108
) {
109
- assert ( commands [ name] == nil , " aleady had a command named '\( name) ' " )
109
+ assert ( commands [ name] == nil , " already had a command named '\( name) ' " )
110
110
let tool = ShellTool (
111
111
description: description,
112
112
inputs: inputs,
@@ -127,7 +127,7 @@ public struct BuildManifest {
127
127
outputs: [ Node ] ,
128
128
arguments: [ String ]
129
129
) {
130
- assert ( commands [ name] == nil , " aleady had a command named '\( name) ' " )
130
+ assert ( commands [ name] == nil , " already had a command named '\( name) ' " )
131
131
let tool = SwiftFrontendTool (
132
132
moduleName: moduleName,
133
133
description: description,
@@ -146,7 +146,7 @@ public struct BuildManifest {
146
146
arguments: [ String ] ,
147
147
dependencies: String ? = nil
148
148
) {
149
- assert ( commands [ name] == nil , " aleady had a command named '\( name) ' " )
149
+ assert ( commands [ name] == nil , " already had a command named '\( name) ' " )
150
150
let tool = ClangTool (
151
151
description: description,
152
152
inputs: inputs,
@@ -173,7 +173,7 @@ public struct BuildManifest {
173
173
isLibrary: Bool ,
174
174
wholeModuleOptimization: Bool
175
175
) {
176
- assert ( commands [ name] == nil , " aleady had a command named '\( name) ' " )
176
+ assert ( commands [ name] == nil , " already had a command named '\( name) ' " )
177
177
let tool = SwiftCompilerTool (
178
178
inputs: inputs,
179
179
outputs: outputs,
0 commit comments