1
0
Fork 0
mirror of synced 2024-06-26 10:10:57 +12:00

Fixed typos

This commit is contained in:
Eldad Fux 2021-06-30 09:29:39 +03:00
parent afd7678781
commit c8d8b1b867

View file

@ -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' => '',
])