From d71f40e3ed97f510c7c985d0b7affb0e29b28e30 Mon Sep 17 00:00:00 2001 From: Shuvro Roy Date: Sat, 22 May 2021 10:34:09 +0600 Subject: [PATCH 1/2] Fixed typo in readme --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c00fd4d..d2d9d46 100644 --- a/README.md +++ b/README.md @@ -259,7 +259,7 @@ It supports converting received IDs to model instances: public User $user; ``` -Converting arays/objects to unsaved instances: +Converting arrays/objects to unsaved instances: ```php // received: ['name' => 'Try Airwire on a new project', 'priority' => 'highest'] public function addTask(Task $task) From 633cb5669750d82c5544cab495f271c28fc30359 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Samuel=20=C5=A0tancl?= Date: Sat, 22 May 2021 15:31:20 +0200 Subject: [PATCH 2/2] fix typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d2d9d46..b96130c 100644 --- a/README.md +++ b/README.md @@ -54,7 +54,7 @@ interface CreateUser { email: string; password: string; password_confirmation: string; - create(): AirwirePromise; + submit(): AirwirePromise; errors: { ... } // ...