From bf5f2e73d3eb6e60c99e08a59af9c8a2d9d74d8b Mon Sep 17 00:00:00 2001 From: Seyed Alireza Mirehe <113815060+alirezamirehe@users.noreply.github.com> Date: Thu, 1 Aug 2024 15:52:32 +0200 Subject: [PATCH] docs: fix typo in view queries documentation (#57228) The typo in the [queries document](https://angular.dev/guide/components/queries#content-queries) has been corrected: Queries never **pierce** through component boundaries. PR Close #57228 --- adev/src/content/guide/components/queries.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/adev/src/content/guide/components/queries.md b/adev/src/content/guide/components/queries.md index b7b7b64600e..3374d40df05 100644 --- a/adev/src/content/guide/components/queries.md +++ b/adev/src/content/guide/components/queries.md @@ -156,7 +156,7 @@ export class UserProfile { } `@ContentChildren` creates a `QueryList` object that contains the query results. You can subscribe to changes to the query results over time via the `changes` property. -**Queries never piece through component boundaries.** Content queries can only retrieve results from the same template as the component itself. +**Queries never pierce through component boundaries.** Content queries can only retrieve results from the same template as the component itself. ## Query locators