From 0eaa084ced5cf0e602fd68b1fc055301a3be7f02 Mon Sep 17 00:00:00 2001 From: Krzysztof Platis Date: Mon, 13 Jul 2020 13:24:37 +0200 Subject: [PATCH] docs(router): fix typo 'containa' to 'contains' (#36764) Closes #36763 PR Close #36764 --- aio/content/guide/router-tutorial-toh.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aio/content/guide/router-tutorial-toh.md b/aio/content/guide/router-tutorial-toh.md index b6f9823a75..dbe19ca4bb 100644 --- a/aio/content/guide/router-tutorial-toh.md +++ b/aio/content/guide/router-tutorial-toh.md @@ -178,7 +178,7 @@ Replace the contents of each component with the sample HTML below. In order to use the `Router`, you must first register the `RouterModule` from the `@angular/router` package. Define an array of routes, `appRoutes`, and pass them to the `RouterModule.forRoot()` method. -The `RouterModule.forRoot()` method returns a module that containa the configured `Router` service provider, plus other providers that the routing library requires. +The `RouterModule.forRoot()` method returns a module that contains the configured `Router` service provider, plus other providers that the routing library requires. Once the application is bootstrapped, the `Router` performs the initial navigation based on the current browser URL.