I'm okay with any options, but they should be applied consistently.
Identified inconsistencies during the review:
Starting a description for a @param or @return with uppercase or lowercase
Putting a period after a description for a @param or @return
Duplicating Scaladoc comments for overriding methods
Here're my thoughts:
Either uppercase or lowercase is fine. Since uppercase is more prevalent in our code, let's go with uppercase.
Put a period after a proper sentence, or after a phrase if it is followed by another phrase or sentence. No period after a phrase if it ends the description.
Don't duplicate if the content is identical and there is no new information. Duplicating a part of the content with new information for the specific implementation is allowed.
Forked from #399. Maybe a super nit issue 😉
I'm okay with any options, but they should be applied consistently.
Identified inconsistencies during the review:
@param
or@return
with uppercase or lowercase@param
or@return
Here're my thoughts: