refactor(compiler-cli): fix "for to" typo in code comment (#46113)

fix the typo/extra for in a code comment saying
"this is used for to determine" so that it only says
"this is used to determine"

PR Close #46113
This commit is contained in:
dario-piotrowicz
2022-05-23 21:54:54 +01:00
committed by Alex Rickabaugh
parent 355e6b3521
commit 4a7e724238
@@ -528,7 +528,7 @@ export function getDownlevelDecoratorsTransform(
const isNgDecorator = isAngularDecorator(decorator, isCore);
// Keep track if we come across an Angular class decorator. This is used
// for to determine whether constructor parameters should be captured or not.
// to determine whether constructor parameters should be captured or not.
if (isNgDecorator) {
hasAngularDecorator = true;
}