From ee008b6173ec0900871211369e8a35eebf05ab68 Mon Sep 17 00:00:00 2001 From: khalilou88 <32600911+khalilou88@users.noreply.github.com> Date: Wed, 19 Mar 2025 20:12:21 +0100 Subject: [PATCH] docs: add missing word to inheritance docs (#60467) PR Close #60467 --- adev/src/content/guide/components/inheritance.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/adev/src/content/guide/components/inheritance.md b/adev/src/content/guide/components/inheritance.md index 5d0bb53ed3f..937d80f617f 100644 --- a/adev/src/content/guide/components/inheritance.md +++ b/adev/src/content/guide/components/inheritance.md @@ -20,7 +20,7 @@ export class CustomListbox extends ListboxBase { ## Extending other components and directives -When a component extends another component or a directive, it inherits some the metadata defined in +When a component extends another component or a directive, it inherits some of the metadata defined in the base class's decorator and the base class's decorated members. This includes host bindings, inputs, outputs, lifecycle methods.