From c5e8374fa8ad5b412cce1ae5c3d4a22d4b87c373 Mon Sep 17 00:00:00 2001 From: Nikolay Krasko Date: Fri, 23 Mar 2018 17:36:36 +0300 Subject: [PATCH] Minor: typo 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 1e161db953d..93b1d303437 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 ans inline properties: " + + "Augment assignment and increment are not supported for local delegated properties and inline properties: " + descriptor); } }