Fix copy/paste error.

This commit is contained in:
Daniel Rosenwasser 2015-03-16 23:22:15 -07:00
parent 577c12e42e
commit b4811fc8be

View File

@ -1633,7 +1633,7 @@ module FourSlash {
var actual = this.getIndentation(fileName, position);
var lineCol = this.getLineColStringAtPosition(position);
if (actual !== numberOfSpaces) {
this.raiseError('verifyIndentationAtCurrentPosition failed at ' + lineCol + ' - expected: ' + numberOfSpaces + ', actual: ' + actual);
this.raiseError('verifyIndentationAtPosition failed at ' + lineCol + ' - expected: ' + numberOfSpaces + ', actual: ' + actual);
}
}