diff --git a/http/client.md b/http/client.md index 1a09c96d..9b4ae503 100644 --- a/http/client.md +++ b/http/client.md @@ -39,7 +39,7 @@ try drop.client.post("http://some-endpoint/json", headers: ["Content-Type": "app ```swift try drop.client.post("http://some-endpoint", headers: [ "Content-Type": "application/x-www-form-urlencoded" -], body: Body.data( Node([ +], body: Body.data( Node(node: [ "email": "mymail@vapor.codes" ]).formURLEncoded())) ```