Skip to content

Commit a39dd1a

Browse files
authored
Merge pull request #82 from alexlafroscia/quickstart-guide-improvements
Fix confusion in the quickstart guide
2 parents 8ad3b56 + 7814bd6 commit a39dd1a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/dummy/app/pods/docs/quickstart/template.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@ This quickstart guide will get you going with a docs site for your brand new add
55
1. **Install the addon.**
66

77
```
8-
ember install ember-learn/ember-cli-addon-docs
8+
ember install ember-cli-addon-docs
99
```
1010

11-
2. **Add the docs route.** Open `tests/dummy/app/router.js` and add a route named `docs`. Go ahead and make it nested, since this is where you'll be defining additional documentation pages.
11+
2. **Add the required routes.** Open `tests/dummy/app/router.js` and add the following route definitions:
1212

1313
{{#docs-snippet name='quickstart-router.js' title='tests/dummy/app/router.js'}}
1414
this.route('docs', function() {
1515
this.route('api', function() {
16-
this.route('class', { path: '/:class_id' });
16+
this.route('item', { path: '/*path' });
1717
});
1818
});
1919
{{/docs-snippet}}

0 commit comments

Comments
 (0)