diff --git a/libraries/tools/kotlin-gradle-plugin/src/main/kotlin/org/jetbrains/kotlin/compilerRunner/GradleKotlinCompilerRunner.kt b/libraries/tools/kotlin-gradle-plugin/src/main/kotlin/org/jetbrains/kotlin/compilerRunner/GradleKotlinCompilerRunner.kt index 398c31714bc..24318213112 100644 --- a/libraries/tools/kotlin-gradle-plugin/src/main/kotlin/org/jetbrains/kotlin/compilerRunner/GradleKotlinCompilerRunner.kt +++ b/libraries/tools/kotlin-gradle-plugin/src/main/kotlin/org/jetbrains/kotlin/compilerRunner/GradleKotlinCompilerRunner.kt @@ -57,7 +57,7 @@ internal open class GradleCompilerRunner(protected val task: Task) { get() = task.project /** - * Compiler might be executed asynchronuosly. Do not do anything requiring end of compilation after this function is called. + * Compiler might be executed asynchronously. Do not do anything requiring end of compilation after this function is called. * @see [GradleKotlinCompilerWork] */ fun runJvmCompilerAsync( @@ -88,7 +88,7 @@ internal open class GradleCompilerRunner(protected val task: Task) { } /** - * Compiler might be executed asynchronuosly. Do not do anything requiring end of compilation after this function is called. + * Compiler might be executed asynchronously. Do not do anything requiring end of compilation after this function is called. * @see [GradleKotlinCompilerWork] */ fun runJsCompilerAsync( @@ -103,7 +103,7 @@ internal open class GradleCompilerRunner(protected val task: Task) { } /** - * Compiler might be executed asynchronuosly. Do not do anything requiring end of compilation after this function is called. + * Compiler might be executed asynchronously. Do not do anything requiring end of compilation after this function is called. * @see [GradleKotlinCompilerWork] */ fun runMetadataCompilerAsync( diff --git a/libraries/tools/kotlin-gradle-plugin/src/main/kotlin/org/jetbrains/kotlin/gradle/tasks/Tasks.kt b/libraries/tools/kotlin-gradle-plugin/src/main/kotlin/org/jetbrains/kotlin/gradle/tasks/Tasks.kt index 28486d52631..119f11d2440 100644 --- a/libraries/tools/kotlin-gradle-plugin/src/main/kotlin/org/jetbrains/kotlin/gradle/tasks/Tasks.kt +++ b/libraries/tools/kotlin-gradle-plugin/src/main/kotlin/org/jetbrains/kotlin/gradle/tasks/Tasks.kt @@ -312,7 +312,7 @@ abstract class AbstractKotlinCompile() : AbstractKo internal abstract fun getSourceRoots(): SourceRoots /** - * Compiler might be executed asynchronuosly. Do not do anything requiring end of compilation after this function is called. + * Compiler might be executed asynchronously. Do not do anything requiring end of compilation after this function is called. * @see [GradleKotlinCompilerWork] */ internal abstract fun callCompilerAsync(args: T, sourceRoots: SourceRoots, changedFiles: ChangedFiles)