From 3aff7112e0bfe372ef9ff310e1239bc7890c0bde Mon Sep 17 00:00:00 2001 From: Ilya Gorbunov Date: Thu, 18 Oct 2018 23:57:13 +0300 Subject: [PATCH] Minor: code formatting in Unit docs --- core/builtins/src/kotlin/Unit.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/builtins/src/kotlin/Unit.kt b/core/builtins/src/kotlin/Unit.kt index 6ee042b413f..4835929d904 100644 --- a/core/builtins/src/kotlin/Unit.kt +++ b/core/builtins/src/kotlin/Unit.kt @@ -17,7 +17,7 @@ package kotlin /** - * The type with only one value: the Unit object. This type corresponds to the `void` type in Java. + * The type with only one value: the `Unit` object. This type corresponds to the `void` type in Java. */ public object Unit { override fun toString() = "kotlin.Unit"