Skip to content

Commit

Permalink
docs(tutorial/jokes): fix typo (remix-run#3962)
Browse files Browse the repository at this point in the history
Co-authored-by: Michaël De Boey <info@michaeldeboey.be>
  • Loading branch information
2 people authored and freeman committed Sep 7, 2022
1 parent 8a41fe5 commit 247577c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions contributors.yml
Expand Up @@ -367,6 +367,7 @@
- sergiocarneiro
- sergiodxa
- shashankboosi
- shairez
- shumuu
- sidkh
- sidv1905
Expand Down
2 changes: 1 addition & 1 deletion docs/tutorials/jokes.md
Expand Up @@ -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]).

Expand Down

0 comments on commit 247577c

Please sign in to comment.