diff --git a/lessons/06-params/README.md b/lessons/06-params/README.md index d165bc7e..d3592292 100644 --- a/lessons/06-params/README.md +++ b/lessons/06-params/README.md @@ -15,7 +15,7 @@ These URLs would match a route path like this: The parts that start with `:` are URL parameters whose values will be parsed out and made available to route components on -`this.props.params[name]`. +`this.props.match.params[name]`. ## Adding a Route with Parameters @@ -32,7 +32,7 @@ export default React.createClass({ render() { return (