Minor, fix deprecation message

This commit is contained in:
Alexander Udalov
2015-09-11 15:12:04 +03:00
parent d5f2bf5666
commit 1394e646b7
@@ -16,14 +16,14 @@
package kotlin.reflect
@Deprecated("This class will be dropped in M13 because it was a part of an overly complex API. Use KFunction instead")
@Deprecated("This class will be dropped after M13 because it was a part of an overly complex API. Use KFunction instead")
public interface KTopLevelFunction<out R> : KFunction<R>
@Deprecated("This class will be dropped in M13 because it was a part of an overly complex API. Use KFunction instead")
@Deprecated("This class will be dropped after M13 because it was a part of an overly complex API. Use KFunction instead")
public interface KTopLevelExtensionFunction<in E, out R>
@Deprecated("This class will be dropped in M13 because it was a part of an overly complex API. Use KFunction instead")
@Deprecated("This class will be dropped after M13 because it was a part of an overly complex API. Use KFunction instead")
public interface KMemberFunction<in T, out R> : KFunction<R>
@Deprecated("This class will be dropped in M13 because it was a part of an overly complex API. Use KFunction instead")
@Deprecated("This class will be dropped after M13 because it was a part of an overly complex API. Use KFunction instead")
public interface KLocalFunction<out R> : KFunction<R>