From 0be6e57efe43c804878fd065f71323ffb577e57a Mon Sep 17 00:00:00 2001 From: Ilya Klyuchnikov Date: Fri, 28 Feb 2014 14:25:10 +0400 Subject: [PATCH] typo fixed: invokation -> invocation --- .../jet/cli/common/arguments/K2JVMCompilerArguments.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/cli/cli-common/src/org/jetbrains/jet/cli/common/arguments/K2JVMCompilerArguments.java b/compiler/cli/cli-common/src/org/jetbrains/jet/cli/common/arguments/K2JVMCompilerArguments.java index 90b3903b649..6882000bebd 100644 --- a/compiler/cli/cli-common/src/org/jetbrains/jet/cli/common/arguments/K2JVMCompilerArguments.java +++ b/compiler/cli/cli-common/src/org/jetbrains/jet/cli/common/arguments/K2JVMCompilerArguments.java @@ -48,7 +48,7 @@ public class K2JVMCompilerArguments extends CommonCompilerArguments { @Argument(value = "noJdkAnnotations", description = "don't include JDK external annotations into classpath") public boolean noJdkAnnotations; - @Argument(value = "notNullAssertions", description = "generate not-null assertion after each invokation of method returning not-null") + @Argument(value = "notNullAssertions", description = "generate not-null assertion after each invocation of method returning not-null") public boolean notNullAssertions; @Argument(value = "notNullParamAssertions", description = "generate not-null assertions on parameters of methods accessible from Java")