Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion cohttp/connection.ml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,9 @@
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
*)
open Sexplib.Std

type t = int
type t = int with sexp

let to_string = string_of_int

Expand Down
2 changes: 1 addition & 1 deletion cohttp/connection.mli
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

(** Connection identifiers. *)

type t
type t with sexp
(** Abstract type for connection identifiers. *)

val create: unit -> t
Expand Down