Correct typo in comments

This commit is contained in:
kirill.shmakov
2019-02-04 14:30:37 +03:00
parent 53aca0069c
commit 9e8972f1f9
2 changed files with 4 additions and 4 deletions
@@ -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(
@@ -312,7 +312,7 @@ abstract class AbstractKotlinCompile<T : CommonCompilerArguments>() : 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)