From 7058277028da493102465eeee25e9a7ee8446bce Mon Sep 17 00:00:00 2001 From: Winter Jung Date: Fri, 1 Nov 2019 23:35:38 +0900 Subject: [PATCH] Fix typo in error message (#29) --- src/utils/actionUtils.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/actionUtils.ts b/src/utils/actionUtils.ts index 81c0068..d4d7638 100644 --- a/src/utils/actionUtils.ts +++ b/src/utils/actionUtils.ts @@ -72,7 +72,7 @@ export function resolvePath(filePath: string): string { if (filePath[0] === "~") { const home = os.homedir(); if (!home) { - throw new Error("Unable to resole `~` to HOME"); + throw new Error("Unable to resolve `~` to HOME"); } return path.join(home, filePath.slice(1)); }