Skip to content

Commit

Permalink
Fix typo in error message (#29)
Browse files Browse the repository at this point in the history
  • Loading branch information
Winter Jung authored and Josh Gross committed Nov 1, 2019
1 parent 2523667 commit 7058277
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/actionUtils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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));
}
Expand Down

0 comments on commit 7058277

Please sign in to comment.