From 166ddaadca3c4b9b5422405719a6af00fe391b75 Mon Sep 17 00:00:00 2001 From: Stephen Fluin Date: Tue, 24 Jul 2018 14:24:52 -0700 Subject: [PATCH] docs(router): clarify scroll position wording (#25077) PR Close #25077 --- packages/router/src/router_module.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/router/src/router_module.ts b/packages/router/src/router_module.ts index 384f7e987a..2d90da6421 100644 --- a/packages/router/src/router_module.ts +++ b/packages/router/src/router_module.ts @@ -321,9 +321,9 @@ export interface ExtraOptions { * * 'enabled'--set the scroll position to the stored position. This option will be the default in * the future. * - * When enabled, the router store store scroll positions when navigating forward, and will - * restore the stored positions whe navigating back (popstate). When navigating forward, - * the scroll position will be set to [0, 0], or to the anchor if one is provided. + * When enabled, the router stores and restores scroll positions during navigation. + * When navigating forward, the scroll position will be set to [0, 0], or to the anchor + * if one is provided. * * You can implement custom scroll restoration behavior as follows. * ```typescript