From 757aa460f36c8cdcb177b71e481a336673ad5302 Mon Sep 17 00:00:00 2001 From: baegteun Date: Fri, 22 Sep 2023 16:14:22 +0900 Subject: [PATCH] Fix README typo Fix typo in README sample code --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index eeadc62..cabe831 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ let client = APIClient(baseURL: URL(string: "https://api.github.com")) // Start sending requests let user: User = try await client.send(Request(path: "/user")).value -var request = Request(path: "/user/emails", method: .post, body: ["alex@me.com"] +var request = Request(path: "/user/emails", method: .post, body: ["alex@me.com"]) try await client.send(request) ```