diff --git a/README.md b/README.md
index f8eb813c50..754e499b3a 100644
--- a/README.md
+++ b/README.md
@@ -60,7 +60,7 @@ React.renderComponent((
When a `Route` is active, you'll get an instance of `handler`
automatically rendered for you. When one of the child routes is active,
-you can render it with `this.props.activeRoute` in the parent all the
+you can render it with `this.props.activeRoute()` in the parent all the
way down the view hierarchy. This allows you to create nested layouts
without having to wire it all up yourself. `Link` components create
accessible anchor tags to route you around the application.
@@ -91,7 +91,7 @@ var App = React.createClass({
);
}
@@ -180,8 +180,7 @@ routes do not inherit the path of their parent.
Routes can be nested. When a child route matches, the parent route's
handler will have an instance of the child route's handler available on
-`this.props.activeRoute`.
-
+`this.props.activeRoute()`.
#### Examples
```xml
@@ -215,7 +214,8 @@ props and static methods available to these components.
#### Props
**this.props.activeRoute** - The active child route handler instance.
-Use it in your render method to render the child route.
+Use it in your render method to render the child route. You can pass
+additional props to it for rendering.
**this.props.params** - When a route has dynamic segments like `` the dynamic values are available at
diff --git a/examples/auth-flow/app.js b/examples/auth-flow/app.js
index 86daccefc3..91b17166c9 100644
--- a/examples/auth-flow/app.js
+++ b/examples/auth-flow/app.js
@@ -34,7 +34,7 @@ var App = React.createClass({
About
Dashboard (authenticated)
- {this.props.activeRoute}
+ {this.props.activeRoute()}
);
}
@@ -99,7 +99,7 @@ var Login = React.createClass({
var errors = this.state.error ?