From 137fc6f8ecd918ae12f00fff436301936574ad79 Mon Sep 17 00:00:00 2001 From: Dwane Hemmings Date: Thu, 15 Dec 2022 14:39:02 -0500 Subject: [PATCH] Update README.md small typo --- content/tutorial/02-sveltekit/02-routing/03-params/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/tutorial/02-sveltekit/02-routing/03-params/README.md b/content/tutorial/02-sveltekit/02-routing/03-params/README.md index 0ef806306..2c99e5459 100644 --- a/content/tutorial/02-sveltekit/02-routing/03-params/README.md +++ b/content/tutorial/02-sveltekit/02-routing/03-params/README.md @@ -14,4 +14,4 @@ Let's create that file: We can now navigate from the `/blog` page to individual blog posts. In the next chapter, we'll see how to load their content. -> Multiple route parameters can appear _within_ one URL segment, as long as they are separated by at least one static character: `foo/[bar]x[baz]` is a valid route where `[bar]` and `[bar]` are dynamic parameters. +> Multiple route parameters can appear _within_ one URL segment, as long as they are separated by at least one static character: `foo/[bar]x[baz]` is a valid route where `[bar]` and `[baz]` are dynamic parameters.