diff --git a/docs/layout/api.html b/docs/layout/api.html
index 5d05c2c4..5507f979 100644
--- a/docs/layout/api.html
+++ b/docs/layout/api.html
@@ -35,7 +35,7 @@
m.route
- m.route(rootElement, defaultRoute, routes)
- - m.route(path, params)
+ - m.route(path, params, replaceHistory)
- m.route()
- m.route(element)
- m.route.mode
diff --git a/docs/mithril.route.md b/docs/mithril.route.md
index d3fede4f..b32abdf6 100644
--- a/docs/mithril.route.md
+++ b/docs/mithril.route.md
@@ -276,7 +276,7 @@ redirects to `http://server/#/dashboard/marysue`
[How to read signatures](how-to-read-signatures.md)
```clike
-void route(String path [, any params])
+void route(String path [, any params] [, Boolean shouldReplaceHistory])
```
- **String path**
@@ -287,6 +287,10 @@ void route(String path [, any params])
Parameters to pass as a querystring
+- **Boolean shouldReplaceHistory**
+
+ If set to true, replaces the current history entry, instead of adding a new one. Defaults to false.
+
---