fix(taskprocessing): fix typo in text2text task type

Signed-off-by: Julien Veyssier <julien-nc@posteo.net>
This commit is contained in:
Julien Veyssier 2024-07-25 10:38:19 +02:00
parent 5ed55b0634
commit 0b04a6aa48
No known key found for this signature in database
GPG key ID: 4141FEE162030638

View file

@ -51,7 +51,7 @@ class TextToText implements ITaskType {
* @since 30.0.0
*/
public function getDescription(): string {
return $this->l->t('Runs an arbitrary prompt through a language model that retuns a reply');
return $this->l->t('Runs an arbitrary prompt through a language model that returns a reply');
}
/**