From 0ec53d8fdd7a895014d5deb7819faa9c22966d11 Mon Sep 17 00:00:00 2001 From: 3Dgoo Date: Thu, 12 Feb 2015 14:39:54 +1030 Subject: [PATCH] sort method comments fixed missing single quote --- model/DataList.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/model/DataList.php b/model/DataList.php index 0f7b387af..3e2408ef1 100644 --- a/model/DataList.php +++ b/model/DataList.php @@ -244,7 +244,7 @@ class DataList extends ViewableData implements SS_List, SS_Filterable, SS_Sortab * @example $list = $list->sort('Name'); // default ASC sorting * @example $list = $list->sort('Name DESC'); // DESC sorting * @example $list = $list->sort('Name', 'ASC'); - * @example $list = $list->sort(array('Name'=>'ASC,'Age'=>'DESC')); + * @example $list = $list->sort(array('Name'=>'ASC', 'Age'=>'DESC')); * * @param String|array Escaped SQL statement. If passed as array, all keys and values are assumed to be escaped. * @return DataList