diff options
author | Jacques Garrigue <garrigue at math.nagoya-u.ac.jp> | 2005-03-22 07:10:20 +0000 |
---|---|---|
committer | Jacques Garrigue <garrigue at math.nagoya-u.ac.jp> | 2005-03-22 07:10:20 +0000 |
commit | 73755fef10752eca2708ec6200c13142e59a5d55 (patch) | |
tree | d045c18a972da3dfa3024854f88304415c1a689d /parsing/printast.ml | |
parent | 061c6ad1b036cd80a8e2fc5e1ad84a3975db1341 (diff) | |
download | ocaml-fixedtypes.tar.gz |
rename fixed types as privatefixedtypes
git-svn-id: http://caml.inria.fr/svn/ocaml/branches/fixedtypes@6820 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
Diffstat (limited to 'parsing/printast.ml')
-rw-r--r-- | parsing/printast.ml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/parsing/printast.ml b/parsing/printast.ml index ae7094e5c4..986cb0f156 100644 --- a/parsing/printast.ml +++ b/parsing/printast.ml @@ -323,8 +323,8 @@ and type_kind i ppf x = | Ptype_record (l, priv) -> line i ppf "Ptype_record %a\n" fmt_private_flag priv; list (i+1) string_x_mutable_flag_x_core_type_x_location ppf l; - | Ptype_fixed -> - line i ppf "Ptype_fixed\n" + | Ptype_private -> + line i ppf "Ptype_private\n" and exception_declaration i ppf x = list i core_type ppf x |