From: Nicolas C. <war...@fr...> - 2003-10-06 06:51:22
|
> Documentation is not correctly produced for many modules, > including for example extHashtbl. > > I suspect this is a bug in ocamldoc. I think so, because > the same problem exists for the standard ocaml distribution. > [Funny no one has comment on this?] > > Here's the whole page I see: > ------------------------------------------------- > Previous Up Next > Module ExtHashtbl > > module ExtHashtbl: sig end > Extra functions over hashtables. This is not a bug. This means that the extHashtbl module is only containing a module ExtHashtbl. This way you can simply do : open ExtHashtbl; to override the Hashtbl ocaml std one. Simply follow the link on module ExtHashtbl to get the documentation. Nicolas Cannasse |