We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ae5b3da commit 9994470Copy full SHA for 9994470
1 file changed
NSTask-execute.swift
@@ -16,7 +16,7 @@ struct AppSignerTaskOutput {
16
}
17
18
extension Process {
19
- func launchSyncronous() -> AppSignerTaskOutput {
+ func launchSynchronous() -> AppSignerTaskOutput {
20
self.standardInput = FileHandle.nullDevice
21
let pipe = Pipe()
22
self.standardOutput = pipe
@@ -48,7 +48,7 @@ extension Process {
48
if workingDirectory != nil {
49
self.currentDirectoryPath = workingDirectory!
50
51
- return self.launchSyncronous()
+ return self.launchSynchronous()
52
53
54
0 commit comments