mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
Java: handle type parameters correct when converting javadoc to markdown (IDEA-371810)
GitOrigin-RevId: 8d4692fc69d59cedd36b00229815ae69121acae0
This commit is contained in:
committed by
intellij-monorepo-bot
parent
83e5cfc9f6
commit
a58f616609
+8
@@ -360,3 +360,11 @@ final class LookupWithIndentsBuilder {
|
||||
/// - two
|
||||
void x() {}
|
||||
}
|
||||
/// `test<b>`
|
||||
/// @param <T> The _M_ type.
|
||||
/// @param <B> The B type.
|
||||
/// @param <P> The P type.
|
||||
/// @param <I> The I type.
|
||||
interface Foo<T, B, P, I>
|
||||
{
|
||||
}
|
||||
|
||||
+10
@@ -381,3 +381,13 @@ final class LookupWithIndentsBuilder {
|
||||
*/
|
||||
void x() {}
|
||||
}
|
||||
<warning descr="Javadoc comment can be Markdown documentation comment">/**</warning>
|
||||
* {@code test<b>}
|
||||
* @param <T> The <em>M</em> type.
|
||||
* @param <B> The B type.
|
||||
* @param <P> The P type.
|
||||
* @param <I> The I type.
|
||||
*/
|
||||
interface Foo<T, B, P, I>
|
||||
{
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user