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
This commit is contained in:
Seyed Alireza Mirehe 2024-08-01 15:52:32 +02:00 committed by Jessica Janiuk
parent a829a7e926
commit bf5f2e73d3

View file

@ -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