From 13c361e27dbb9d5cacc193aa5a7d6efa450397a1 Mon Sep 17 00:00:00 2001 From: Pablo Gil Date: Wed, 23 Feb 2022 22:59:05 +0100 Subject: [PATCH] fixed grammar in notification --- lib/multiple-find-replace.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/multiple-find-replace.js b/lib/multiple-find-replace.js index 87299b5..6e57c44 100644 --- a/lib/multiple-find-replace.js +++ b/lib/multiple-find-replace.js @@ -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) @@ -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)