From 0733fc8b1e149473e5b59fbbb89c47b9acd4997a Mon Sep 17 00:00:00 2001 From: Simon Cruanes Date: Tue, 3 Mar 2020 09:56:15 -0600 Subject: [PATCH] chore: try to appease mdx --- README.md | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/README.md b/README.md index d2334c9..eafdb55 100644 --- a/README.md +++ b/README.md @@ -31,15 +31,9 @@ object that contains the body, headers, and error code. # let url = "https://curl.haxx.se/";; val url : string = "https://curl.haxx.se/" # let res = Ezcurl.get ~url ();; -val res : (Ezcurl_core.response, Curl.curlCode * string) result = - Ok - {Ezcurl_core.code = 200; - headers = ... # let content = match res with Ok c -> c | Error (_,s) -> failwith s;; val content : Ezcurl_core.response = - {Ezcurl_core.code = 200; - headers = ... # content.Ezcurl.code;; @@ -75,8 +69,7 @@ val urls : string list = | Ok r -> Lwt.return r.Ezcurl_lwt.code | Error e -> Lwt.fail (Failure "oh no")) ;; -val codes : int list Ezcurl_lwt.io = - +... # codes;; - : int list = [200; 200; 200] ```