We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b34eea4 commit cbcddfdCopy full SHA for cbcddfd
src/odoc/extract_code.cppo.ml
@@ -239,6 +239,6 @@ let extract ~dst ~input ~names ~line_directives ~warnings_options =
239
#else
240
241
let extract ~dst:_ ~input:_ ~names:_ ~line_directives:_ ~warnings_options:_ =
242
- Error (`Msg "Extract-code is not available for OCaml < 4.10")
+ Result.Error (`Msg "Extract-code is not available for OCaml < 4.10")
243
244
#endif
src/odoc/extract_code.mli
@@ -4,4 +4,4 @@ val extract :
4
names:string list ->
5
line_directives:bool ->
6
warnings_options:Odoc_model.Error.warnings_options ->
7
- (unit, [> `Msg of string ]) result
+ (unit, [> `Msg of string ]) Result.result
0 commit comments