1
0
mirror of https://github.com/mamoe/mirai.git synced 2025-04-05 07:10:11 +08:00
This commit is contained in:
Him188 2020-01-17 16:27:09 +08:00
parent 8e6c68b8b6
commit 13d751c222

View File

@ -32,7 +32,7 @@ operator fun <T> UnsafeWeakRef<T>.provideDelegate(thisRef: Any?, property: KProp
* Provides delegate value.
*
* ```kotlin
* val bot: Bot by param.unsafeWeakRef()
* val bot: Bot? by param.weakRef()
* ```
*/
operator fun <T> WeakRef<T>.provideDelegate(thisRef: Any?, property: KProperty<*>): ReadOnlyProperty<Any?, T?> {