Skip to content

Commit e2f8dd5

Browse files
authored
english word tweak
binded is not a word AFAIK
1 parent bebed5d commit e2f8dd5

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
@@ -171,7 +171,7 @@ Now if you click on `<FilterLink />` you will see that your URL will change from
171171

172172
## Reading From the URL
173173

174-
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 />`
174+
Currently, the todo list is not filtered even after the URL changed. This is because we are filtering from `<VisibleTodoList />`'s `mapStateToProps()` is still bound 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 />`
175175
#### `containers/VisibleTodoList.js`
176176
```js
177177
const mapStateToProps = (state, ownProps) => {

0 commit comments

Comments
 (0)