diff --git a/packages/core/src/render3/PERF_NOTES.md b/packages/core/src/render3/PERF_NOTES.md index bc9365da71..8fe570bcfc 100644 --- a/packages/core/src/render3/PERF_NOTES.md +++ b/packages/core/src/render3/PERF_NOTES.md @@ -88,7 +88,7 @@ export function i18nStart(index: number, message: string, subTemplateIndex?: num ``` Notice that the above function almost never runs because `tView.firstTemplatePass` is usually false. -The application would benefit inlining but the large code inside `if` prevents it. +The application would benefit from inlining, but the large code inside `if` prevents it. Simple refactoring will fix it. ```