Skip to content

Commit 3d79eed

Browse files
committed
docs: fix typos
1 parent 98af158 commit 3d79eed

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/quickstart.mld

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ struct
161161
(** The type of all messages used in your application. *)
162162
type t =
163163
(* ... *)
164-
| Cool of CoolLibrary.Reporter.t (** Embedding all messages from [CoolLibrary]. *)
164+
| Cool of CoolLibrary.Reporter.Message.t (** Embedding all messages from [CoolLibrary]. *)
165165

166166
(** The default severity level of diagnostics with a particular message. *)
167167
let default_severity : t -> Asai.Diagnostic.severity =
@@ -173,7 +173,7 @@ struct
173173
let short_code : t -> string =
174174
function
175175
(* ... *)
176-
| Cool c -> CoolLibrary.Reporter.short_code c
176+
| Cool c -> CoolLibrary.Reporter.Message.short_code c
177177

178178
(** It is recommended to add a helper function (such as [cool]) to save typing,
179179
and this tutorial will assume you have done that. *)

0 commit comments

Comments
 (0)