From ba662b7d564cd7f4c5c5c41cf0b7225c797bc87e Mon Sep 17 00:00:00 2001 From: Nikolay Krasko Date: Fri, 23 Mar 2018 18:30:36 +0300 Subject: [PATCH] Minor: another message fix (KT-23309) #KT-23309 Fixed --- .../backend/src/org/jetbrains/kotlin/codegen/StackValue.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/backend/src/org/jetbrains/kotlin/codegen/StackValue.java b/compiler/backend/src/org/jetbrains/kotlin/codegen/StackValue.java index 93b1d303437..6717be04fa2 100644 --- a/compiler/backend/src/org/jetbrains/kotlin/codegen/StackValue.java +++ b/compiler/backend/src/org/jetbrains/kotlin/codegen/StackValue.java @@ -2061,7 +2061,7 @@ public abstract class StackValue { @NotNull CallableDescriptor descriptor ) { throw new RuntimeException( - "Augment assignment and increment are not supported for local delegated properties and inline properties: " + + "Augmented assignment and increment are not supported for local delegated properties and inline properties: " + descriptor); } }