From 30493c42751c35cee3d8942c57a7e63647bcee39 Mon Sep 17 00:00:00 2001 From: Josh Soref Date: Wed, 30 Dec 2020 11:44:49 -0500 Subject: [PATCH] spelling: suppresses --- MacDown/Code/Application/MPMainController.m | 2 +- MacDown/Code/Preferences/MPPreferences.h | 2 +- MacDown/Code/Preferences/MPPreferences.m | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/MacDown/Code/Application/MPMainController.m b/MacDown/Code/Application/MPMainController.m index 5a46edce..6d0ade24 100644 --- a/MacDown/Code/Application/MPMainController.m +++ b/MacDown/Code/Application/MPMainController.m @@ -249,7 +249,7 @@ - (BOOL)applicationShouldOpenUntitledFile:(NSApplication *)sender { if (self.preferences.filesToOpen.count || self.preferences.pipedContentFileToOpen) return NO; - return !self.preferences.supressesUntitledDocumentOnLaunch; + return !self.preferences.suppressesUntitledDocumentOnLaunch; } - (void)applicationDidBecomeActive:(NSNotification *)notification diff --git a/MacDown/Code/Preferences/MPPreferences.h b/MacDown/Code/Preferences/MPPreferences.h index 9190c3a0..69366f4c 100644 --- a/MacDown/Code/Preferences/MPPreferences.h +++ b/MacDown/Code/Preferences/MPPreferences.h @@ -17,7 +17,7 @@ extern NSString * const MPDidDetectFreshInstallationNotification; @property (assign) NSString *firstVersionInstalled; @property (assign) NSString *latestVersionInstalled; @property (assign) BOOL updateIncludesPreReleases; -@property (assign) BOOL supressesUntitledDocumentOnLaunch; +@property (assign) BOOL suppressesUntitledDocumentOnLaunch; @property (assign) BOOL createFileForLinkTarget; // Extension flags. diff --git a/MacDown/Code/Preferences/MPPreferences.m b/MacDown/Code/Preferences/MPPreferences.m index b533bc5a..0ea228c8 100644 --- a/MacDown/Code/Preferences/MPPreferences.m +++ b/MacDown/Code/Preferences/MPPreferences.m @@ -73,7 +73,7 @@ - (instancetype)init @dynamic firstVersionInstalled; @dynamic latestVersionInstalled; @dynamic updateIncludesPreReleases; -@dynamic supressesUntitledDocumentOnLaunch; +@dynamic suppressesUntitledDocumentOnLaunch; @dynamic createFileForLinkTarget; @dynamic extensionIntraEmphasis;