From add5c3992c492a8be897a7498132a125ce0f464a Mon Sep 17 00:00:00 2001 From: Niklas Merz Date: Wed, 2 Oct 2019 14:56:11 +0200 Subject: [PATCH] docs(router): fix typo for "urlUpdateStrategy" (#32960) PR Close #32960 --- packages/router/src/router.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/router/src/router.ts b/packages/router/src/router.ts index 18407840fd..c5466bc10b 100644 --- a/packages/router/src/router.ts +++ b/packages/router/src/router.ts @@ -379,7 +379,7 @@ export class Router { /** * Determines when the router updates the browser URL. - * By default (`"deferred"`), udates the browser URL after navigation has finished. + * By default (`"deferred"`), updates the browser URL after navigation has finished. * Set to `'eager'` to update the browser URL at the beginning of navigation. * You can choose to update early so that, if navigation fails, * you can show an error message with the URL that failed.