我正在尝试使用 ocamldoc 记录我的一个小项目。
我有一个主.ml
文件和opens
另外两个.ml
文件。
$ ocamldoc -html included1.ml included2.ml
工作得很好,但是当我添加包含文件时,比如
$ ocamldoc -html included1.ml included2.ml including.ml
我明白了:
File "including.ml", line 5, characters 5-16:
Error: Unbound module Included1
1 error(s) encountered
我从ocamldoc 文档中看到打开模块非常好,直到没有发生冲突。
我应该如何进行?