Skip to content

Commit 1b16b56

Browse files
author
Paul Statezny
committed
[fixed] syntax error in documentation overview
1 parent e0b708f commit 1b16b56

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/guides/overview.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -331,15 +331,15 @@ beyond what was matched isn't recognized.
331331
will render inside the `Inbox` UI for any paths not recognized
332332
after the parent route's path `/inbox/*`
333333
-->
334-
<NotFoundRoute handler={InboxNotFound}
334+
<NotFoundRoute handler={InboxNotFound}/>
335335
<Route name="message" path="/inbox/:messageId" handler={Message}/>
336336
<DefaultRoute handler={InboxStats}/>
337337
</Route>
338338
<Route name="calendar" path="/calendar" handler={Calendar}/>
339339
<DefaultRoute handler={Dashboard}/>
340340
</Route>
341341
<!-- will catch any route that isn't recognized at all -->
342-
<NotFoundRoute handler={NotFound}
342+
<NotFoundRoute handler={NotFound}/>
343343
</Routes>
344344
```
345345

0 commit comments

Comments
 (0)