Fix typo (any -> all) for everyWhere description

This commit is contained in:
Rudi Chen
2017-09-11 11:39:04 -07:00
committed by GitHub
parent 1009717327
commit d75afe93fb
+1 -1
View File
@@ -342,7 +342,7 @@ export interface CommonWrapper<P = {}, S = {}> {
every(selector: EnzymeSelector): boolean;
/**
* Returns whether or not any of the nodes in the wrapper pass the provided predicate function.
* Returns whether or not all of the nodes in the wrapper pass the provided predicate function.
* @param fn
*/
everyWhere(fn: (wrapper: this) => boolean): boolean;