#413·jazzy

`@note` annotation is only parsed if separated by new lines

Author: meleyalCreated Dec 7, 2015Updated Feb 14, 2023
Labelsbugsourcekittendifficulty-easy

Our code is commented as follows:

/// First line of comment.
/// Second line of comment
/// @note This is a note.
/// Final line of comment.

The @note is not parsed correctly and is just shown inline with the regular comment text.

The following works, but ideally we'd like to avoid introducing those new lines into an already large code-base:

/// First line of comment.
/// Second line of comment
///
/// @note This is a note.
///
/// Final line of comment.