From cf335668c96cd6c38d6911745b7dc828a11f4c2d Mon Sep 17 00:00:00 2001 From: Winter Jung Date: Fri, 1 Nov 2019 09:12:53 +0900 Subject: [PATCH] Fix typo in error message --- 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)); }