Skip to content

Commit

Permalink
Merge pull request remix-run#272 from paulstatezny/overview-syntax-error
Browse files Browse the repository at this point in the history
[fixed] syntax error in documentation overview
  • Loading branch information
mjackson committed Sep 13, 2014
2 parents 5de4fc0 + 1b16b56 commit 467fc76
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/guides/overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -331,15 +331,15 @@ beyond what was matched isn't recognized.
will render inside the `Inbox` UI for any paths not recognized
after the parent route's path `/inbox/*`
-->
<NotFoundRoute handler={InboxNotFound}
<NotFoundRoute handler={InboxNotFound}/>
<Route name="message" path="/inbox/:messageId" handler={Message}/>
<DefaultRoute handler={InboxStats}/>
</Route>
<Route name="calendar" path="/calendar" handler={Calendar}/>
<DefaultRoute handler={Dashboard}/>
</Route>
<!-- will catch any route that isn't recognized at all -->
<NotFoundRoute handler={NotFound}
<NotFoundRoute handler={NotFound}/>
</Routes>
```

Expand Down

0 comments on commit 467fc76

Please sign in to comment.