Change tooltip message for deprecated items

This commit is contained in:
Natalia.Ukhorskaya
2012-10-24 11:56:43 +04:00
parent 4db732c11b
commit cacb2a6761
13 changed files with 118 additions and 85 deletions
@@ -1,9 +1,9 @@
class MyRunnable() {}
deprecated("'fun invoke()' is deprecated") fun MyRunnable.invoke() {
deprecated("Use A instead") fun MyRunnable.invoke() {
}
fun test() {
val m = MyRunnable()
<info descr="'fun invoke()' is deprecated">m()</info>
<info descr="'fun invoke()' is deprecated. Use A instead">m()</info>
}