我目前有三个文件:
临时文件.hrl
-export_type([temptype/0]).
-type temptype() :: string().
%% blah blah documentation
临时文件.erl
-module(tempfile).
... more code, but no references to the temptype() type.
随机的.erl
-module(random).
%% @headerfile "tempfile.hrl"
-include("tempfile.hrl").
-spec random() -> tempfile:temptype().
但是,当使用 edoc 时,不会temptype()
出现任何文档。出现一个超链接tempfile.html#temptype
,但它没有链接到任何地方。我什至尝试使用-export_type
但没有用......可能是什么问题?谢谢。