From 6e57443acd224ed6cf78bb68354335ae51bd02d4 Mon Sep 17 00:00:00 2001 From: Pedro <38896755+Pedro-D13@users.noreply.github.com> Date: Sun, 10 Jan 2021 13:26:46 +0000 Subject: [PATCH] docs(router): fix minor grammatical issue (#40380) PR Close #40380 --- 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 af3440b330..c9979160df 100644 --- a/aio/content/guide/router-tutorial.md +++ b/aio/content/guide/router-tutorial.md @@ -3,7 +3,7 @@ This tutorial describes how you can build a single-page application, SPA that uses multiple Angular routes. -In an SPA, all of your application's functions exist in a single HTML page. +In a Single Page Application (SPA), all of your application's functions exist in a single HTML page. As users access your application's features, the browser needs to render only the parts that matter to the user, instead of loading a new page. This pattern can significantly improve your application's user experience. To define how users navigate through your application, you use routes. You can add routes to define how users navigate from one part of your application to another.