Skip to content

Commit

Permalink
[fixed] syntax error in documentation overview
Browse files Browse the repository at this point in the history
  • Loading branch information
Paul Statezny committed Sep 8, 2014
1 parent e0b708f commit 1b16b56
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 1b16b56

Please sign in to comment.