Fix spelling of "destroyed" in WeakReference docs

This commit adds a missing "r" to the word "destroyed" in the class
documentation for WeakReference.
This commit is contained in:
Jeffrey McNally-Dawes
2020-04-13 22:48:27 -06:00
committed by SvyatoslavScherbina
parent c75af5cf5d
commit 9d8578251c
@@ -7,7 +7,7 @@ package kotlin.native.ref
/**
* Class WeakReference encapsulates weak reference to an object, which could be used to either
* retrieve a strong reference to an object, or return null, if object was already destoyed by
* retrieve a strong reference to an object, or return null, if object was already destroyed by
* the memory manager.
*/
public class WeakReference<T : Any> {