Skip to content

Commit

Permalink
strip whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
c-cube committed Feb 8, 2020
1 parent d25cadf commit b3f2544
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Tiny_httpd.ml
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ module Response_code = struct
| n -> "Unknown response code " ^ string_of_int n (* TODO *)
end

type 'a resp_result = ('a, Response_code.t * string) result
type 'a resp_result = ('a, Response_code.t * string) result
let unwrap_resp_result = function
| Ok x -> x
| Error (c,s) -> raise (Bad_req (c,s))
Expand Down

0 comments on commit b3f2544

Please sign in to comment.