以下は、test.mli
ocamldoc スタイルのコメントでコメントされた interface の例です。
(** ocamldoc module comment *)
open MissingModule;;
(** ocamldoc function comment *)
val test : unit;;
コマンドを実行するocamldoc test.mli
と、次のエラーが表示されます。
File "test.mli", line 2, characters 0-9:
Error: Unbound module MissingModule
1 error(s) encountered
なぜドキュメンテーションジェネレーターはバインドされていないモジュールを気にする必要があるのですか?