Browse Source

Merge pull request #3 from n8225/testpr

Fix line numbers
pull/830/head
n8225 8 years ago
committed by GitHub
parent
commit
f85ee937b7
  1. 2
      test.js

2
test.js

@ -28,7 +28,7 @@ function entryErrorCheck(md) {
totalPass += 1;
//console.log(i + 1 + ". Pass: " + entryArray[i].name);
} else {
console.log("Line #" + i + 1 + ". Fail: " + entryArray[i].name);
console.log("Line #" + (i + 1) + ". Fail: " + entryArray[i].name);
//console.log(entries[i]);
totalFail += 1;
}

Loading…
Cancel
Save