### Please correct wrong and misleading comments `PageArray::filterData()` https://github.com/processwire/processwire/blob/4725ece5f86374a8de73d132e54b0ac4c9ae1f09/wire/core/PageArray.php#L391 **WRONG:** _"Filter out Pages that **don't match** the selector."_ **RIGHT:** _"Filter out pages that **match or do not match** the selector (destructive)"_ `PageArray::filter() ` https://github.com/processwire/processwire/blob/4725ece5f86374a8de73d132e54b0ac4c9ae1f09/wire/core/PageArray.php#L406 **WRONG:** _"Filter out pages that **don't match** the selector (destructive)"_ **RIGHT:** _"Filter out pages that **match** the selector (destructive)"_