Skip to content

Commit 63ce37f

Browse files
authored
Merge pull request reduxjs#1961 from Sparragus/patch-1
Fixes wrong file name in docs
2 parents e5e608e + 91bac67 commit 63ce37f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/advanced/UsageWithReactRouter.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ Now if you click on `<FilterLink />` you will see that your URL will change from
172172
## Reading From the URL
173173

174174
Currently, the todo list is not filtered even after the URL changed. This is because we are filtering from `<VisibleTodoList />`'s `mapStateToProps()` is still binded to the `state` and not to the URL. `mapStateToProps` has an optional second argument `ownProps` that is an object with every props passed to `<VisibleTodoList />`
175-
#### `components/App.js`
175+
#### `containers/VisibleTodoList.js`
176176
```js
177177
const mapStateToProps = (state, ownProps) => {
178178
return {

0 commit comments

Comments
 (0)