fixing cheatsheet indication

This commit is contained in:
HoneyryderChuck 2023-07-25 17:25:45 +01:00
parent afead02c46
commit f0167925ec

View File

@ -43,11 +43,11 @@ HTTPX.with(headers: {"user-agent" => "My Ruby Script"}).get("https://google.com"
## HTTP Methods
```ruby
HTTP.get("https://myapi.com/users/1")
HTTP.post("https://myapi.com/users")
HTTP.patch("https://myapi.com/users/1")
HTTP.put("https://myapi.com/users/1")
HTTP.delete("https://myapi.com/users/1")
HTTPX.get("https://myapi.com/users/1")
HTTPX.post("https://myapi.com/users")
HTTPX.patch("https://myapi.com/users/1")
HTTPX.put("https://myapi.com/users/1")
HTTPX.delete("https://myapi.com/users/1")
```
## HTTP Authentication