From 9d8578251ccdc2072bceccda680642998dbf6e8c Mon Sep 17 00:00:00 2001 From: Jeffrey McNally-Dawes Date: Mon, 13 Apr 2020 22:48:27 -0600 Subject: [PATCH] Fix spelling of "destroyed" in WeakReference docs This commit adds a missing "r" to the word "destroyed" in the class documentation for WeakReference. --- runtime/src/main/kotlin/kotlin/native/ref/Weak.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime/src/main/kotlin/kotlin/native/ref/Weak.kt b/runtime/src/main/kotlin/kotlin/native/ref/Weak.kt index 81b185d1244..3192c5022d4 100644 --- a/runtime/src/main/kotlin/kotlin/native/ref/Weak.kt +++ b/runtime/src/main/kotlin/kotlin/native/ref/Weak.kt @@ -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 {