diff options
author | Alain Frisch <alain@frisch.fr> | 2013-09-27 17:05:39 +0000 |
---|---|---|
committer | Alain Frisch <alain@frisch.fr> | 2013-09-27 17:05:39 +0000 |
commit | cc31694f7ca1043080fc290e5a82520513cf7f94 (patch) | |
tree | 1123085352316cb8df8a26157ec4070882f899fe /ocamldoc/odoc_sig.ml | |
parent | c0778758c1bc167ac0f9d5725bb886bc26540bc9 (diff) |
Keep attributes on module declarations.
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@14195 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
Diffstat (limited to 'ocamldoc/odoc_sig.ml')
-rw-r--r-- | ocamldoc/odoc_sig.ml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ocamldoc/odoc_sig.ml b/ocamldoc/odoc_sig.ml index 615627ad0..4ea352174 100644 --- a/ocamldoc/odoc_sig.ml +++ b/ocamldoc/odoc_sig.ml @@ -94,7 +94,7 @@ module Signature_search = let search_module table name = match Hashtbl.find table (M name) with - | (Types.Sig_module (ident, module_type, _)) -> module_type + | (Types.Sig_module (ident, md, _)) -> md.Types.md_type | _ -> assert false let search_module_type table name = |