What does `<ERROR CLASS>` in the docs mean?...
# arrow
j
What does
<ERROR CLASS>
in the docs mean? Is it a glitch in the docs generation? For example:
tailrec fun <L, A, B> tailRecM(a: A, f: (A) -> Kind<<ERROR CLASS><L>, Either<A, B>>): Either<L, B>
r
usually happens when you mix two processors in the same module like @extension and @higherkind which kapt can’t run in a predictable order
you are here generating an Instance for a Kind and its extension in the same module right?
kapt is unable to type those elements because it does not know what generators are generating
easy fix, move the extensions to a different module
so separate fro data types if you want to use the @extension and @higherkind annotations
j
r
LOL
Then that seems to be dokka related then
Could you please create an issue so we make sure it’s addressed? thanks
👍 1
r
It's already solved. Thanks for raising the issue @julian 🙌
🎉 2