From 32e5e39e9b3e366d96c954601a77f5cf9adc4947 Mon Sep 17 00:00:00 2001 From: Shammel Lee Date: Tue, 27 Feb 2024 19:56:27 -0500 Subject: [PATCH] fix: typo navigation -> navigating (#593) --- .../03-sveltekit/08-stores/02-navigating-store/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/tutorial/03-sveltekit/08-stores/02-navigating-store/README.md b/content/tutorial/03-sveltekit/08-stores/02-navigating-store/README.md index fe0f24019..163496f24 100644 --- a/content/tutorial/03-sveltekit/08-stores/02-navigating-store/README.md +++ b/content/tutorial/03-sveltekit/08-stores/02-navigating-store/README.md @@ -2,7 +2,7 @@ title: navigating --- -The `navigating` store represents the current navigation. When a navigation starts — because of a link click, or a back/forward navigation, or a programmatic `goto` — the value of `navigation` will become an object with the following properties: +The `navigating` store represents the current navigation. When a navigation starts — because of a link click, or a back/forward navigation, or a programmatic `goto` — the value of `navigating` will become an object with the following properties: - `from` and `to` — objects with `params`, `route` and `url` properties - `type` — the type of navigation, e.g. `link`, `popstate` or `goto` @@ -32,4 +32,4 @@ It can be used to show a loading indicator for long-running navigations. In this -``` \ No newline at end of file +```