mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
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:
parent
a829a7e926
commit
bf5f2e73d3
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue