From e88f484ccbba9bfcc7355fbeec16fe49f9e98e18 Mon Sep 17 00:00:00 2001 From: Steven Chim <655241+chimurai@users.noreply.github.com> Date: Sat, 20 Sep 2025 22:41:53 +0200 Subject: [PATCH] docs: fix typo in component bindings jsdoc (#63969) PR Close #63969 --- packages/core/src/render3/component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/core/src/render3/component.ts b/packages/core/src/render3/component.ts index e1cba177cb0..150560dae0a 100644 --- a/packages/core/src/render3/component.ts +++ b/packages/core/src/render3/component.ts @@ -73,7 +73,7 @@ import {assertComponentDef} from './errors'; * `[[element1, element2], [element3]]`: projects `element1` and `element2` into one ``, * and `element3` into a separate ``. * * `directives` (optional): Directives that should be applied to the component. - * * `binding` (optional): Bindings to apply to the root component. + * * `bindings` (optional): Bindings to apply to the root component. * @returns ComponentRef instance that represents a given Component. * * @publicApi