@@ -59,7 +59,7 @@ extension NudgePreferences {
59
59
// MARK: - OptionalFeatures
60
60
struct OptionalFeatures : Codable {
61
61
var acceptableApplicationBundleIDs : [ String ] ?
62
- var aggressiveUserExperience , asyncronousSoftwareUpdate , attemptToFetchMajorUpgrade , enforceMinorUpdates : Bool ?
62
+ var aggressiveUserExperience , asynchronousSoftwareUpdate , attemptToFetchMajorUpgrade , enforceMinorUpdates : Bool ?
63
63
}
64
64
65
65
// MARK: OptionalFeatures convenience initializers and mutators
@@ -83,14 +83,14 @@ extension OptionalFeatures {
83
83
func with(
84
84
acceptableApplicationBundleIDs: [ String ] ? ? = nil ,
85
85
aggressiveUserExperience: Bool ? ? = nil ,
86
- asyncronousSoftwareUpdate : Bool ? ? = nil ,
86
+ asynchronousSoftwareUpdate : Bool ? ? = nil ,
87
87
attemptToFetchMajorUpgrade: Bool ? ? = nil ,
88
88
enforceMinorUpdates: Bool ? ? = nil
89
89
) -> OptionalFeatures {
90
90
return OptionalFeatures (
91
91
acceptableApplicationBundleIDs: acceptableApplicationBundleIDs ?? self . acceptableApplicationBundleIDs,
92
92
aggressiveUserExperience: aggressiveUserExperience ?? self . aggressiveUserExperience,
93
- asyncronousSoftwareUpdate : asyncronousSoftwareUpdate ?? self . asyncronousSoftwareUpdate ,
93
+ asynchronousSoftwareUpdate : asynchronousSoftwareUpdate ?? self . asynchronousSoftwareUpdate ,
94
94
attemptToFetchMajorUpgrade: attemptToFetchMajorUpgrade ?? self . attemptToFetchMajorUpgrade,
95
95
enforceMinorUpdates: enforceMinorUpdates ?? self . enforceMinorUpdates
96
96
)
0 commit comments