Skip to content
This repository has been archived by the owner on Apr 22, 2023. It is now read-only.

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix include logic was replacing https include with http
  • Loading branch information
isaacs committed Mar 17, 2012
1 parent d980620 commit 851b397
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/doc/generate.js
Expand Up @@ -86,7 +86,7 @@ function processIncludes(input, cb) {
if (er) return cb(errState = er);
incCount--;
includeData[fname] = inc;
input = input.split(include).join(includeData[fname]);
input = input.split(include+'\n').join(includeData[fname]+'\n');
if (incCount === 0) {
return cb(null, input);
}
Expand Down

0 comments on commit 851b397

Please sign in to comment.