FIx typo in method stub.

This commit is contained in:
Arthur Ozga
2016-11-29 13:36:09 -06:00
parent 5d6a714a04
commit bf48564cc8
13 changed files with 15 additions and 15 deletions

View File

@@ -50,7 +50,7 @@ namespace ts.codefix {
}
function getMethodBodyStub(newLineChar: string) {
return `{${newLineChar}throw new Error('Method not Implemented');${newLineChar}}${newLineChar}`;
return `{${newLineChar}throw new Error('Method not implemented.');${newLineChar}}${newLineChar}`;
}
function getVisibilityPrefix(flags: ModifierFlags): string {