It seems that since the stdlib has been namespaced using module aliases in 4.07, references of the form {!M} were M is a Stdlib.M module are not resolved.
An instance of this problem can be seen in the Fmt module which as a lot of references to the Format module. See for example:
It seems that since the stdlib has been namespaced using module aliases in 4.07, references of the form
{!M}
wereM
is aStdlib.M
module are not resolved.An instance of this problem can be seen in the
Fmt
module which as a lot of references to theFormat
module. See for example:https://b0-system.github.io/odig/doc/fmt/Fmt/index.html#val-pf
and the corresponding doc string:
https://github.com/dbuenzli/fmt/blob/d1c1bb26e00f22c160e6cc5d6b6376bce8426115/src/fmt.mli#L23