From a4fb2a445f2822134313bd6adbf33e14fa373aba Mon Sep 17 00:00:00 2001 From: Alexander Udalov Date: Thu, 8 Oct 2020 20:15:47 +0200 Subject: [PATCH] Minor, add spaces to diagnostic message --- .../kotlin/diagnostics/rendering/DefaultErrorMessages.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/compiler/frontend/src/org/jetbrains/kotlin/diagnostics/rendering/DefaultErrorMessages.java b/compiler/frontend/src/org/jetbrains/kotlin/diagnostics/rendering/DefaultErrorMessages.java index a0a200f05b4..6b981c78eb6 100644 --- a/compiler/frontend/src/org/jetbrains/kotlin/diagnostics/rendering/DefaultErrorMessages.java +++ b/compiler/frontend/src/org/jetbrains/kotlin/diagnostics/rendering/DefaultErrorMessages.java @@ -269,8 +269,8 @@ public class DefaultErrorMessages { MAP.put(USELESS_VARARG_ON_PARAMETER, "Vararg on this parameter is useless"); MAP.put(MULTIPLE_VARARG_PARAMETERS, "Multiple vararg-parameters are prohibited"); MAP.put(FORBIDDEN_VARARG_PARAMETER_TYPE, "Forbidden vararg parameter type: {0}", RENDER_TYPE); - MAP.put(CHANGING_ARGUMENTS_EXECUTION_ORDER_FOR_NAMED_VARARGS, "Arguments execution order is going to be changed in a future release." + - "The expression for named vararg argument will be executed in the order in which it was listed, not at the end." + + MAP.put(CHANGING_ARGUMENTS_EXECUTION_ORDER_FOR_NAMED_VARARGS, "Arguments execution order is going to be changed in a future release. " + + "The expression for named vararg argument will be executed in the order in which it was listed, not at the end. " + "See KT-17691 for more details."); MAP.put(EXPECTED_DECLARATION_WITH_BODY, "Expected declaration must not have a body");