Skip to content
Snippets Groups Projects
Commit 1c5bbc36 authored by Loïc Correnson's avatar Loïc Correnson
Browse files

[server] fix data mli doc

parent 5293ce76
No related branches found
No related tags found
No related merge requests found
...@@ -33,19 +33,19 @@ type jtype = ...@@ -33,19 +33,19 @@ type jtype =
| Jboolean | Jboolean
| Jnumber | Jnumber
| Jstring | Jstring
| Jalpha (* string primarily compared without case *) | Jalpha (** string primarily compared without case *)
| Jtag of string (* single constant string *) | Jtag of string (** single constant string *)
| Jkey of string (* kind of a string used for indexing *) | Jkey of string (** kind of a string used for indexing *)
| Jindex of string (* kind of an integer used for indexing *) | Jindex of string (** kind of an integer used for indexing *)
| Joption of jtype | Joption of jtype
| Jdict of jtype (* dictionaries *) | Jdict of jtype (** dictionaries *)
| Jarray of jtype (* order matters *) | Jarray of jtype (** order matters *)
| Jtuple of jtype list | Jtuple of jtype list
| Junion of jtype list | Junion of jtype list
| Jrecord of (string * jtype) list | Jrecord of (string * jtype) list
| Jenum of ident * string list (* type and tags *) | Jenum of ident * string list (** type and tags *)
| Jdata of ident * jtype (* type and definition *) | Jdata of ident * jtype (** type and definition *)
| Jself (* for (simply) recursive types *) | Jself (** for (simply) recursive types *)
type fieldInfo = { type fieldInfo = {
fd_name: string; fd_name: string;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment