Skip to content

Commit 94a759e

Browse files
committed
parseFile now returns the correct value.
1 parent 282daf8 commit 94a759e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/doxdox.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ exports.parseFile = function (file, output, config) {
1313

1414
if (fs.existsSync(file)) {
1515

16-
exports.parseScript(fs.readFileSync(file, 'utf8'), output, config);
16+
return exports.parseScript(fs.readFileSync(file, 'utf8'), output, config);
1717

1818
} else {
1919

0 commit comments

Comments
 (0)