diff options
author | Pierre Weis <Pierre.Weis@inria.fr> | 2003-05-01 22:22:37 +0000 |
---|---|---|
committer | Pierre Weis <Pierre.Weis@inria.fr> | 2003-05-01 22:22:37 +0000 |
commit | e77055aad9ff89c61aae94d0e5d6f1c492b830fd (patch) | |
tree | c5ffd44b98ec7e3e3f4d1ad7961c798beea232d3 /ocamldoc/odoc_sig.ml | |
parent | 2a88474155db1d7df4f328264b4320ff63a01c35 (diff) |
Complete move from virtual to private for concrete types with private
constructors (or labels).
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@5524 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
Diffstat (limited to 'ocamldoc/odoc_sig.ml')
-rw-r--r-- | ocamldoc/odoc_sig.ml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ocamldoc/odoc_sig.ml b/ocamldoc/odoc_sig.ml index 0570bc024..5c2c1e653 100644 --- a/ocamldoc/odoc_sig.ml +++ b/ocamldoc/odoc_sig.ml @@ -236,7 +236,7 @@ module Analyser = in (0, f name_mutable_type_list) - | Parsetree.Ptype_virtual tkind -> comment_from_tkind tkind in + | Parsetree.Ptype_private tkind -> comment_from_tkind tkind in comment_from_tkind tk @@ -280,7 +280,7 @@ module Analyser = in Odoc_type.Type_record (List.map f l) - | Types.Type_virtual tkind -> get_tkind tkind in + | Types.Type_private tkind -> get_tkind tkind in get_tkind type_kind |