| Issue |
169006
|
| Summary |
[clang-doc] Certain comment types should be single paragraphs
|
| Labels |
new issue
|
| Assignees |
|
| Reporter |
evelez7
|
Certain Doxygen special commands are concatenated regardless of the order they're written. For example:
```
/// \return Foo
/// \brief Brief!
/// \return Bar
```
will look like:
```
*Return*
Foo
Bar
```
See [the return special command](https://www.doxygen.nl/manual/commands.html#cmdreturn). Currently, the JSON backend treats these as separate comment paragraphs, and the JSON looks like the following:
```
"ReturnComments": [
[
"TextComment": "Foo"
],
[
"TextComment": "Bar
]
]
```
This JSON should be emitted as a single array.
_______________________________________________
llvm-bugs mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs