From 247577c08a8f26b0df1e53483cb8eef5b52ab871 Mon Sep 17 00:00:00 2001 From: Shai Reznik Date: Tue, 30 Aug 2022 00:59:29 -0600 Subject: [PATCH] docs(tutorial/jokes): fix typo (#3962) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Michaƫl De Boey --- contributors.yml | 1 + docs/tutorials/jokes.md | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/contributors.yml b/contributors.yml index e53268b9fbb..c825c36a906 100644 --- a/contributors.yml +++ b/contributors.yml @@ -367,6 +367,7 @@ - sergiocarneiro - sergiodxa - shashankboosi +- shairez - shumuu - sidkh - sidv1905 diff --git a/docs/tutorials/jokes.md b/docs/tutorials/jokes.md index c1620150fd1..528786a7b6b 100644 --- a/docs/tutorials/jokes.md +++ b/docs/tutorials/jokes.md @@ -398,7 +398,7 @@ Great, so now going to [`/jokes/new`][jokes-new] should display your form: Soon we'll add a database that stores our jokes by an ID, so let's add one more route that's a little more unique, a parameterized route: -`/jokes/:jokeId` +`/jokes/$jokeId` Here the parameter `$jokeId` can be anything, and we can lookup that part of the URL up in the database to display the right joke. To make a parameterized route, we use the `$` character in the filename. ([Read more about the convention here][the-route-filename-convention]).