Skip to content

Commit

Permalink
spelling: suppresses
Browse files Browse the repository at this point in the history
  • Loading branch information
jsoref committed Dec 30, 2020
1 parent 1853129 commit 30493c4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion MacDown/Code/Application/MPMainController.m
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion MacDown/Code/Preferences/MPPreferences.h
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion MacDown/Code/Preferences/MPPreferences.m
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ - (instancetype)init
@dynamic firstVersionInstalled;
@dynamic latestVersionInstalled;
@dynamic updateIncludesPreReleases;
@dynamic supressesUntitledDocumentOnLaunch;
@dynamic suppressesUntitledDocumentOnLaunch;
@dynamic createFileForLinkTarget;

@dynamic extensionIntraEmphasis;
Expand Down

0 comments on commit 30493c4

Please sign in to comment.