diff --git a/docs/api/ReactWrapper/findWhere.md b/docs/api/ReactWrapper/findWhere.md index c4357482d..6c4781c78 100644 --- a/docs/api/ReactWrapper/findWhere.md +++ b/docs/api/ReactWrapper/findWhere.md @@ -1,6 +1,6 @@ # `.findWhere(fn) => ReactWrapper` -Finds every node in the render tree that return true for the provided predicate function. +Finds every node in the render tree that returns true for the provided predicate function. #### Arguments diff --git a/docs/api/ShallowWrapper/findWhere.md b/docs/api/ShallowWrapper/findWhere.md index f6154845b..4ad61d658 100644 --- a/docs/api/ShallowWrapper/findWhere.md +++ b/docs/api/ShallowWrapper/findWhere.md @@ -1,6 +1,6 @@ # `.findWhere(fn) => ShallowWrapper` -Finds every node in the render tree that return true for the provided predicate function. +Finds every node in the render tree that returns true for the provided predicate function. #### Arguments diff --git a/docs/api/mount.md b/docs/api/mount.md index 7184239ad..74b52fa50 100644 --- a/docs/api/mount.md +++ b/docs/api/mount.md @@ -63,7 +63,7 @@ describe('', () => { Find every node in the render tree that matches the provided selector. #### [`.findWhere(predicate) => ReactWrapper`](ReactWrapper/findWhere.md) -Find every node in the render tree that return true for the provided predicate function. +Find every node in the render tree that returns true for the provided predicate function. #### [`.filter(selector) => ReactWrapper`](ReactWrapper/filter.md) Remove nodes in the current wrapper that do not match the provided selector. diff --git a/docs/api/shallow.md b/docs/api/shallow.md index 820819e38..bab067bc1 100644 --- a/docs/api/shallow.md +++ b/docs/api/shallow.md @@ -62,7 +62,7 @@ is not called on the component, and `componentDidUpdate` is not called after Find every node in the render tree that matches the provided selector. #### [`.findWhere(predicate) => ShallowWrapper`](ShallowWrapper/findWhere.md) -Find every node in the render tree that return true for the provided predicate function. +Find every node in the render tree that returns true for the provided predicate function. #### [`.filter(selector) => ShallowWrapper`](ShallowWrapper/filter.md) Remove nodes in the current wrapper that do not match the provided selector.