Long lines in Markdown style are split in a mix of Markdown Javadoc comment and single line comment.
- Lingua principale
- Java
- Stelle
- 5.6k
- Fork
- 559
- Merge medio
- 1g 13h
- PR unite (30g)
- 34
Descrizione
If i write a very long Markdown Javadoc comment with Java 25, it splits the line, but the new line only has two slashes rather than three to continue the Javadoc comment.
Example:
```java
/// This is a very long comment that will very likely higher than eighty characters and that should definitely be wrapped at some point.
```
Applying spotless then results in the following:
```java
/// This is a very long comment that will very likely higher than eighty
// characters and that should definitely be wrapped at some point.
```
It should result in this (just add a third slash):
```java
/// This is a very long comment that will very likely higher than eighty
/// characters and that should definitely be wrapped at some point.
```
Guida per i contributori
Apri la guida per i contributori
Valutazione
Questa issue non è ancora stata valutata.