Skip to content

Commit 7baf854

Browse files
nrileypieter
authored andcommitted
Remove extraneous space in "Are you sure you wish to revert changes?" message.
1 parent f25aad8 commit 7baf854

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

PBGitIndexController.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ - (void) revertChangesForFiles:(NSArray *)files
180180
defaultButton:nil
181181
alternateButton:@"Cancel"
182182
otherButton:nil
183-
informativeTextWithFormat:@"Are you sure you wish to revert changes?\n\n You cannot undo this operation."] runModal];
183+
informativeTextWithFormat:@"Are you sure you wish to revert changes?\n\nYou cannot undo this operation."] runModal];
184184

185185
if (ret == NSAlertDefaultReturn)
186186
[self forceRevertChangesForFiles:files];

PBWebChangesController.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ - (void)discardHunk:(NSString *)hunk altKey:(BOOL)altKey
9595
defaultButton:nil
9696
alternateButton:@"Cancel"
9797
otherButton:nil
98-
informativeTextWithFormat:@"Are you sure you wish to discard the changes in this hunk?\n\n You cannot undo this operation."] runModal];
98+
informativeTextWithFormat:@"Are you sure you wish to discard the changes in this hunk?\n\nYou cannot undo this operation."] runModal];
9999
}
100100

101101
if (ret == NSAlertDefaultReturn) {

0 commit comments

Comments
 (0)