From 59521d53dafbc1dd3ff64f9002a328f9f8b7c307 Mon Sep 17 00:00:00 2001 From: Eldad Fux Date: Sat, 25 Sep 2021 16:48:46 +0300 Subject: [PATCH] Fixed sum description --- src/Appwrite/Utopia/Response/Model/BaseList.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Appwrite/Utopia/Response/Model/BaseList.php b/src/Appwrite/Utopia/Response/Model/BaseList.php index 785fa5c7ed..a16cb95df5 100644 --- a/src/Appwrite/Utopia/Response/Model/BaseList.php +++ b/src/Appwrite/Utopia/Response/Model/BaseList.php @@ -34,7 +34,7 @@ class BaseList extends Model if ($paging) { $this->addRule('sum', [ 'type' => self::TYPE_INTEGER, - 'description' => 'Total sum of items in the list.', + 'description' => 'Total number of items available on the server.', 'default' => 0, 'example' => 5, ]);