Don't quote the word 'generators' in error messages

This commit is contained in:
Jason Freeman
2014-12-11 17:22:22 -08:00
parent d385f2ebf4
commit 06d7ef14cf
32 changed files with 61 additions and 61 deletions

View File

@@ -4410,7 +4410,7 @@ module ts {
function checkForGenerator(node: FunctionLikeDeclaration) {
if (node.asteriskToken) {
return grammarErrorOnNode(node.asteriskToken, Diagnostics.generators_are_not_currently_supported);
return grammarErrorOnNode(node.asteriskToken, Diagnostics.Generators_are_not_currently_supported);
}
}