diff options
author | alainfrisch <alain@frisch.fr> | 2017-07-18 11:22:43 +0200 |
---|---|---|
committer | alainfrisch <alain@frisch.fr> | 2017-09-12 00:36:46 +0200 |
commit | f5c3a4fecb803be6faff73625188263264571e61 (patch) | |
tree | d1703c1b3f2d1741ec5d64c2a24ab3d5d34a648b /parsing/parsetree.mli | |
parent | e5255c082e34ba4b03d01e62509eafa242c01b91 (diff) | |
download | ocaml-f5c3a4fecb803be6faff73625188263264571e61.tar.gz |
Fix doc.
Diffstat (limited to 'parsing/parsetree.mli')
-rw-r--r-- | parsing/parsetree.mli | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/parsing/parsetree.mli b/parsing/parsetree.mli index 74e3f4d988..f484ebd1f9 100644 --- a/parsing/parsetree.mli +++ b/parsing/parsetree.mli @@ -418,7 +418,7 @@ and label_declaration = pld_mutable: mutable_flag; pld_type: core_type; pld_loc: Location.t; - pld_attributes: attributes; (* l [@id1] [@id2] : T *) + pld_attributes: attributes; (* l : T [@id1] [@id2] *) } (* { ...; l: T; ... } (mutable=Immutable) @@ -433,7 +433,7 @@ and constructor_declaration = pcd_args: constructor_arguments; pcd_res: core_type option; pcd_loc: Location.t; - pcd_attributes: attributes; (* C [@id1] [@id2] of ... *) + pcd_attributes: attributes; (* C of ... [@id1] [@id2] *) } and constructor_arguments = @@ -466,7 +466,7 @@ and extension_constructor = pext_name: string loc; pext_kind : extension_constructor_kind; pext_loc : Location.t; - pext_attributes: attributes; (* C [@id1] [@id2] of ... *) + pext_attributes: attributes; (* C of ... [@id1] [@id2] *) } and extension_constructor_kind = |