How do I document a return value that uses generic...
# announcements
b
How do I document a return value that uses generics in kdoc? I want to do something like
Copy code
@return [Observable<List<Card>>] description here
but it's not correct
y
bachhuberdesign: it's just
@return description here
, you don't need to mention the type in any way, it will be automatically included in the docs
b
Great, thank you for the info 👍