Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
Jason2605 committed Nov 8, 2022
2 parents ef66697 + 2f725fd commit 8d73dcb
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions docs/docs/standard-lib/http.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,6 @@ HTTP.post("https://httpbin.org/post", {"test": 10}, ["Content-Type: application/
### HTTP.newClient(dict)

Creates a new HTTP client with a given set of options.
Returns a Result and neecds to be unwraped upon success.

```cs
const opts = {
Expand Down Expand Up @@ -81,7 +80,7 @@ httpClient.get("https://httpbin.org/get");
{"content": "...", "headers": ["...", "..."], "statusCode": 200}
```

### HTTP.post(string, dictionary: postArgs)
### httpClient.post(string, dictionary: postArgs)

Sends a HTTP POST request to a given URL.
Returns a Result and unwraps to a Response upon success.
Expand Down

0 comments on commit 8d73dcb

Please sign in to comment.