docs(router): fix typo 'containa' to 'contains' (#36764)

Closes #36763

PR Close #36764
This commit is contained in:
Krzysztof Platis 2020-07-13 13:24:37 +02:00 committed by Andrew Scott
parent 62e19c8813
commit 0eaa084ced
1 changed files with 1 additions and 1 deletions

View File

@ -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.
<div class="alert is-important">