diff --git a/src/ORM/ArrayList.php b/src/ORM/ArrayList.php index 06bf59bab..6d60d3e13 100644 --- a/src/ORM/ArrayList.php +++ b/src/ORM/ArrayList.php @@ -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 diff --git a/src/ORM/DataList.php b/src/ORM/DataList.php index cbd247606..b494c7441 100644 --- a/src/ORM/DataList.php +++ b/src/ORM/DataList.php @@ -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