DOCS: Update filter to use correct class

This commit is contained in:
mattclegg 2020-04-28 17:48:21 +05:45
parent 76bc7524a7
commit df8cb9e010
No known key found for this signature in database
GPG Key ID: 68C4C8DB2D0D1DFE
2 changed files with 2 additions and 2 deletions

View File

@ -607,7 +607,7 @@ class ArrayList extends ViewableData implements SS_List, Filterable, Sortable, L
* Filter the list to include items with these characteristics
*
* @return ArrayList
* @see SS_List::filter()
* @see Filterable::filter()
* @example $list->filter('Name', 'bob'); // only bob in the list
* @example $list->filter('Name', array('aziz', 'bob'); // aziz and bob in list
* @example $list->filter(array('Name'=>'bob, 'Age'=>21)); // bob with the Age 21 in list

View File

@ -365,7 +365,7 @@ class DataList extends ViewableData implements SS_List, Filterable, Sortable, Li
/**
* Return a copy of this list which only includes items with these characteristics
*
* @see SS_List::filter()
* @see Filterable::filter()
*
* @example $list = $list->filter('Name', 'bob'); // only bob in the list
* @example $list = $list->filter('Name', array('aziz', 'bob'); // aziz and bob in list