docs(router): Fix method name for retrieving stored handles

method name was documented incorrectly. this fixes the name

(cherry picked from commit f17f32c351)
This commit is contained in:
Andrew Scott 2026-04-24 07:11:16 -07:00 committed by Alon Mishne
parent 1be52ad880
commit fbe080f829

View file

@ -798,7 +798,8 @@ export type ExperimentalAutoCleanupInjectorsFeature =
*
* This feature is opt-in and requires `RouteReuseStrategy.shouldDestroyInjector` to return `true`
* for the routes that should be destroyed. If the `RouteReuseStrategy` uses stored handles, it
* should also implement `retrieveStoredHandle` to ensure we don't destroy injectors for handles that will be reattached.
* should also implement `retrieveStoredRouteHandles` to ensure injectors for handles that will be
* reattached are not destroyed.
*
* @experimental 21.1
*/