You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
(** This is the module that does foos *)
module Foo = struct
val x : int
...
end
it gets included in the documentation of includes of that module:
include Foo
This is the module that does foos
val x : int
It probably shouldn't be since the comment describes the module itself rather than its contents, and if someone wants to know about Foo itself they can just follow the link and read about it.
The text was updated successfully, but these errors were encountered:
Fixesocaml#87
Also adds a test for this issue as well as one for Aliases as my first
attempt at this broke them.
Signed-off-by: Jon Ludlam <jon@recoil.org>
Fixesocaml#87
Also adds a test for this issue as well as one for Aliases as my first
attempt at this broke them.
Signed-off-by: Jon Ludlam <jon@recoil.org>
When a module has a description comment:
it gets included in the documentation of includes of that module:
It probably shouldn't be since the comment describes the module itself rather than its contents, and if someone wants to know about
Foo
itself they can just follow the link and read about it.The text was updated successfully, but these errors were encountered: