From 1dcbc69f6ec71502752671a1b4de4ae055fa0a20 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Antunes?= Date: Wed, 13 Jan 2021 10:56:51 +0000 Subject: [PATCH] fix: typo in comment MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Eduardo Bouças --- src/utils/get-global-config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/get-global-config.js b/src/utils/get-global-config.js index 4ec36f1c5a8..d22c490ff51 100644 --- a/src/utils/get-global-config.js +++ b/src/utils/get-global-config.js @@ -24,7 +24,7 @@ const getGlobalConfig = async function () { const defaults = { ...globalConfigDefaults, ...legacyConfig } const configStore = new Configstore(null, defaults, { configPath }) - // If legacy config exsists we can now safely delete it + // If legacy config exists we can now safely delete it if (legacyConfig) { try { await rmFileAsync(legacyPath)