fix(compiler-cli): fix typo in diagnostic template info. (#32684)

Fixes #32662

PR Close #32684
This commit is contained in:
cran-cg
2019-09-15 12:59:58 +05:30
committed by Kara Erickson
parent 3a90a7cb43
commit f6d66671b6
2 changed files with 3 additions and 4 deletions

View File

@ -238,7 +238,7 @@ class ExpressionDiagnosticsVisitor extends RecursiveTemplateAstVisitor {
'The template context does not have an implicit value', spanOf(ast.sourceSpan));
} else {
this.reportError(
`The template context does not defined a member called '${ast.value}'`,
`The template context does not define a member called '${ast.value}'`,
spanOf(ast.sourceSpan));
}
}