diff --git a/README.md b/README.md
index d552150b..0750732a 100644
--- a/README.md
+++ b/README.md
@@ -295,7 +295,6 @@ To show a `Fragment` when no other `Fragment`s match a route, use `
```
-
...React will render:
```html
@@ -311,6 +310,28 @@ To show a `Fragment` when no other `Fragment`s match a route, use `
```
+If you want to use nested fragments for complex navigation patterns, you should remember to put the most generic route at the end of your jsx. If you do not follow this advice your route will just get matched to the first matching route.
+Internally the Fragments get converted into default Route objects the sequence is important:
+e.G. '/users/:id' -> would get mapped to '/users/' -> render UserManagement.
+
+To solve this little issue just rearrange the sequences like that:
+
+```jsx
+
+
+
+
+
+
+
+
+
+
+
+
+
+```
+
`` makes basic component-per-page navigation easy:
```jsx