From 2eba8efb8077c6e91486e78a071745fb45c1c101 Mon Sep 17 00:00:00 2001 From: Ilya Gorbunov Date: Mon, 12 Feb 2018 14:59:56 +0300 Subject: [PATCH] Do not refer to Cloneable in documentation There's no source for Cloneable and it can't be resolved yet. --- core/builtins/native/kotlin/Enum.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/builtins/native/kotlin/Enum.kt b/core/builtins/native/kotlin/Enum.kt index d3009e6fbf8..7b9a4582331 100644 --- a/core/builtins/native/kotlin/Enum.kt +++ b/core/builtins/native/kotlin/Enum.kt @@ -39,7 +39,7 @@ public abstract class Enum>(name: String, ordinal: Int): Comparable< /** * Throws an exception since enum constants cannot be cloned. - * This method prevents enum classes from inheriting from [Cloneable]. + * This method prevents enum classes from inheriting from `Cloneable`. */ protected final fun clone(): Any