Skip to content

Commit 2a4373f

Browse files
committed
Fix typo in rootDir option resolver
1 parent ac8e338 commit 2a4373f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/options_resolvers/rootDir.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ export default function rootDir(value/* , currentConfig */) {
1414
}
1515

1616
if (!isAbsolute(value) || !statSync(value).isDirectory()) {
17-
throw new Error(`Configuration 'rootDir' is not containg a valid absolute path`);
17+
throw new Error(`Configuration 'rootDir' is not containing a valid absolute path`);
1818
}
1919

2020
return value;

0 commit comments

Comments
 (0)