Skip to content

Commit

Permalink
fixed grammar in notification
Browse files Browse the repository at this point in the history
  • Loading branch information
pgilfernandez committed Feb 23, 2022
1 parent 1598b1c commit 13c361e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/multiple-find-replace.js
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ export default {
fs.writeFile(path, defaultText, function (err) {
if (err) {
if (atom.config.get('multiple-find-replace.general.displayNotifications')) {
atom.notifications.addError('Multiple Find and Replace', {detail: 'The template could not been created'})
atom.notifications.addError('Multiple Find and Replace', {detail: 'The template could not be created'})
}
}
atom.workspace.open(path)
Expand Down Expand Up @@ -100,7 +100,7 @@ export default {
fs.writeFile(path, defaultText, function (err) {
if (err) {
if (atom.config.get('multiple-find-replace.general.displayNotifications')) {
atom.notifications.addError('Multiple Find and Replace', {detail: 'The template could not been created'})
atom.notifications.addError('Multiple Find and Replace', {detail: 'The template could not be created'})
}
}
atom.workspace.open(path)
Expand Down

0 comments on commit 13c361e

Please sign in to comment.