diff options
| author | Adelyn Breedlove <[email protected]> | 2019-02-27 07:28:13 -0700 |
|---|---|---|
| committer | Adelyn Breedlove <[email protected]> | 2019-02-27 07:28:13 -0700 |
| commit | a72847bc206779252bb7f487b76654de564a6d7e (patch) | |
| tree | 031273fec2abf64ce7f527d6c4bdce31cbe5111d /lib/http/http.mli | |
| parent | Correct User-Agent (diff) | |
| download | disml-a72847bc206779252bb7f487b76654de564a6d7e.tar.xz disml-a72847bc206779252bb7f487b76654de564a6d7e.zip | |
Some improvements to rate limits
Diffstat (limited to 'lib/http/http.mli')
| -rw-r--r-- | lib/http/http.mli | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/http/http.mli b/lib/http/http.mli index fe587c7..b043854 100644 --- a/lib/http/http.mli +++ b/lib/http/http.mli @@ -17,7 +17,7 @@ module Base : sig val request :
?body:Yojson.Safe.t ->
?query:(string * string) list ->
- [> `DELETE | `GET | `PATCH | `POST | `PUT ] ->
+ [ `Delete | `Get | `Patch | `Post | `Put ] ->
string ->
Yojson.Safe.t Deferred.Or_error.t
end
|