You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the Field module in base we have the following code:
(**/**)moduleFor_generated_code : sig(*_ don't use this by hand, it is only meant for ppx_fields_conv *)type('perm, 'record, 'field) t =
{ force_variance : 'perm -> unit;name : string;setter : ('record -> 'field -> unit) option;getter : 'record -> 'field;fset : 'record -> 'field -> 'record
}
valopaque_identity : 'a -> 'aend(**/**)(** ['record] is the type of the record. ['field] is the type of the values stored in the record field with name [name]. ['perm] is a way of restricting the operations that can be used. *)type('perm, 'record, 'field) t_with_perm =
| Fieldof ('perm, 'record, 'field) For_generated_code.t
[@@unboxed]
The For_generated_code is correctly left out of the documentation, however the t_with_perm type is documented as:
type ('perm, 'record, 'field) t_with_perm =
| Field of ('perm, 'record, 'field) For_generated_code.t
with For_generated_code.t a dead link. It should instead be documented as:
type ('perm, 'record, 'field) t_with_perm
The text was updated successfully, but these errors were encountered:
In the
Field
module in base we have the following code:The
For_generated_code
is correctly left out of the documentation, however thet_with_perm
type is documented as:with
For_generated_code.t
a dead link. It should instead be documented as:The text was updated successfully, but these errors were encountered: