HTTP types: headers, status codes, methods, bodies, MIME types
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix merlint lint warnings: missing docs, doc style, test inclusion

Resolve E400 (missing documentation), E410 (bad doc style), E615
(missing test suite), and E616 (use failf) across the monorepo.
Also fix test_timing to reference Requests.Timing instead of
non-existent Http.Timing.

+4 -3
+4 -3
lib/http_version.mli
··· 55 55 Section 3.1}. *) 56 56 57 57 val alpn_h2 : string 58 - (** ALPN protocol identifier for HTTP/2 over TLS, the string [h2]. Serialized as 59 - the two-octet sequence: 0x68, 0x32. *) 58 + (** [alpn_h2] is the ALPN protocol identifier for HTTP/2 over TLS, the string 59 + ["h2"]. Serialized as the two-octet sequence: 0x68, 0x32. *) 60 60 61 61 val alpn_http_1_1 : string 62 - (** ALPN protocol identifier for HTTP/1.1, the string [http/1.1]. *) 62 + (** [alpn_http_1_1] is the ALPN protocol identifier for HTTP/1.1, the string 63 + ["http/1.1"]. *) 63 64 64 65 val alpn_of_version : t -> string option 65 66 (** [alpn_of_version version] returns the ALPN identifier for a version. Returns