[jOOQ/jOOQ#17615] Fix Javadoc syntax error

This commit is contained in:
Lukas Eder 2024-11-14 09:21:33 +01:00
parent a44eca8eb7
commit 496e864e8a

View File

@ -116,7 +116,7 @@ import org.jetbrains.annotations.NotNull;
*
* <pre>
* <code>
* Result<Record1<BookId>> result =
* Result&lt;Record1&lt;BookId>> result =
* ctx.select(BOOK.ID.convertFrom(BookId::new))
* .from(BOOK)
* .fetch();