From 5c0f1a6d703ef886dba6a6b3f2f0726eea9522f3 Mon Sep 17 00:00:00 2001 From: Kevin Donahue Date: Thu, 1 Dec 2016 18:50:26 -0500 Subject: [PATCH] Doc: clarify Navigating with React Router section Fixed typo and increased fidelity of description with respect to example. --- docs/advanced/UsageWithReactRouter.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/advanced/UsageWithReactRouter.md b/docs/advanced/UsageWithReactRouter.md index 6adae5a86d..d8374b5e95 100644 --- a/docs/advanced/UsageWithReactRouter.md +++ b/docs/advanced/UsageWithReactRouter.md @@ -118,7 +118,7 @@ export default Root; ## Navigating with React Router -React Router comes with a [``](https://github.com/reactjs/react-router/blob/master/docs/API.md#link) component that let you navigate around your application. We can use it in our example and change our container `` component so we can change the URL using ``. The `activeStyle={}` property lets you apply a style on the active state. +React Router comes with a [``](https://github.com/reactjs/react-router/blob/master/docs/API.md#link) component that lets you navigate around your application. In our example, we can wrap `` with a new container component `` so as to dynamically change the URL. The `activeStyle={}` property lets us apply a style on the active state. #### `containers/FilterLink.js`