Skip to content

Commit

Permalink
docs(Learnocaml_api): Fix other details in ocamldoc comments
Browse files Browse the repository at this point in the history
  • Loading branch information
erikmd committed Sep 30, 2021
1 parent 64722ed commit 2c1347c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/state/learnocaml_api.ml
Expand Up @@ -16,7 +16,7 @@ module type COMPAT = sig

val to_string : t -> string

(** Supported formats: [Compat.v "str"] where "str" is
(** Supported formats: [Compat.v "str"] where "str" is nonempty and
either "n", "-n" (a signed integer), or "n.str".
However, [Compat.v "0.14.rc1"] or so is not supported for now. *)
val v : string -> t
Expand Down
4 changes: 2 additions & 2 deletions src/state/learnocaml_api.mli
Expand Up @@ -29,7 +29,7 @@ module type COMPAT = sig

val to_string : t -> string

(** Supported formats: [Compat.v "str"] where "str" is
(** Supported formats: [Compat.v "str"] where "str" is nonempty and
either "n", "-n" (a signed integer), or "n.str".
However, [Compat.v "0.14.rc1"] or so is not supported for now. *)
val v : string -> t
Expand Down Expand Up @@ -147,7 +147,7 @@ type _ request =
val supported_versions: 'a request -> Compat.pred

(** [is supported client server req] = Ok () if
[server <= client && current "supports" req && server "supports" client] *)
[server <= client && "client supports req" && "server supports req"] *)
val is_supported:
?current:Compat.t -> server:Compat.t ->
'resp request -> (unit, string) result
Expand Down

0 comments on commit 2c1347c

Please sign in to comment.