Fix for KT-13818

Javadoc @code conversion
This commit is contained in:
Simon Ogorodnik
2016-10-10 20:32:37 +03:00
parent 452b77692d
commit 1a7c507cc5
6 changed files with 51 additions and 4 deletions
@@ -1,4 +1,4 @@
/**
* `A<B`
* `A<B`
*/
class C
+11
View File
@@ -0,0 +1,11 @@
/**
* Start.
* Plain quote: 'quoted'
* KT-13818: {@code 'quoted'}
* Code: {@code someCode()}
* Operators: {@code a > b}
* String: {@code str = "String"}
* Generic: {@code List<T>}
* End.
*/
public class Quote {}
+11
View File
@@ -0,0 +1,11 @@
/**
* Start.
* Plain quote: 'quoted'
* KT-13818: `'quoted'`
* Code: `someCode()`
* Operators: `a > b`
* String: `str = "String"`
* Generic: `List<T>`
* End.
*/
class Quote