From 5d70f09032443addd9c70e6ead1763a2a3ddbb65 Mon Sep 17 00:00:00 2001 From: Gourav102 Date: Sun, 6 Jun 2021 20:30:17 +0530 Subject: [PATCH] docs: Corrected spelling (#42493) Corrected spelling of 'Properties'. PR Close #42493 --- aio/content/guide/router-tutorial.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aio/content/guide/router-tutorial.md b/aio/content/guide/router-tutorial.md index bc0793859d..8bbfae55d2 100644 --- a/aio/content/guide/router-tutorial.md +++ b/aio/content/guide/router-tutorial.md @@ -118,7 +118,7 @@ what component your application should display for that path. This code adds the `RouterModule` to the `imports` array. Next, the code uses the `forRoot()` method of the `RouterModule` to -define your two routes. This method takes an array of JavaScript objects, with each object defining the proprties of a route. +define your two routes. This method takes an array of JavaScript objects, with each object defining the properties of a route. The `forRoot()` method ensures that your application only instantiates one `RouterModule`. For more information, see [Singleton Services](/guide/singleton-services#forroot-and-the-router).