From c8d8b1b86733e764b1145c8b384d5ad7d2a0a158 Mon Sep 17 00:00:00 2001 From: Eldad Fux Date: Wed, 30 Jun 2021 09:29:39 +0300 Subject: [PATCH] Fixed typos --- src/Appwrite/Utopia/Response/Model/Execution.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Appwrite/Utopia/Response/Model/Execution.php b/src/Appwrite/Utopia/Response/Model/Execution.php index 9b38bf71f..289aadaef 100644 --- a/src/Appwrite/Utopia/Response/Model/Execution.php +++ b/src/Appwrite/Utopia/Response/Model/Execution.php @@ -48,13 +48,13 @@ class Execution extends Model ]) ->addRule('stdout', [ 'type' => self::TYPE_STRING, - 'description' => 'The script stdout output string. Logs the latest 4,000 charachters of the execution stdout output.', + 'description' => 'The script stdout output string. Logs the last 4,000 characters of the execution stdout output.', 'default' => '', 'example' => '', ]) ->addRule('stderr', [ 'type' => self::TYPE_STRING, - 'description' => 'The script stderr output string. Logs the latest 4,000 charachters of the execution stderr output.', + 'description' => 'The script stderr output string. Logs the last 4,000 characters of the execution stderr output', 'default' => '', 'example' => '', ])