Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs(tutorial/jokes): fix typo #3962

Merged
merged 5 commits into from Aug 30, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions contributors.yml
Expand Up @@ -366,6 +366,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