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.
2 parents 452e29d + 21a6538 commit 708c00bCopy full SHA for 708c00b
guides/release/routing/defining-your-routes.md
@@ -286,9 +286,7 @@ Router.map(function() {
286
287
If the user navigates to `/post/5`, the route will then have the `post_id` of
288
`5` to use to load the correct post.
289
-Ember follows the convention of `:model-name_id` for two reasons.
290
-The first reason is that Routes know how to fetch the right model by default, if you follow the convention.
291
-The second is that `params` is an object, and can only have one value associated with a key.
+Ember follows the convention of `:model-name_id` because `params` is an object, and can only have one value associated with a key.
292
To put it in code, the following will _not_ work properly:
293
294
```javascript {data-filename=app/router.js}
0 commit comments