We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 26a7cc7 commit 2d97641Copy full SHA for 2d97641
guides/v3.3.0/tutorial/subroutes.md
@@ -226,7 +226,7 @@ export default function() {
226
227
// Find and return the provided rental from our rental list above
228
this.get('/rentals/:id', function (db, request) {
229
- return { data: rentals.find((rental) => request.params.id === rental.id/) };
+ return { data: rentals.find((rental) => request.params.id === rental.id) };
230
});
231
232
}
0 commit comments