From d657f40e3f84542de429ac314a1c62a3eaad2304 Mon Sep 17 00:00:00 2001 From: Iaroslav Postovalov Date: Tue, 22 Dec 2020 12:58:35 +0700 Subject: [PATCH] Fix KDoc comments --- kmath-ast/src/jsMain/kotlin/kscience/kmath/estree/estree.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kmath-ast/src/jsMain/kotlin/kscience/kmath/estree/estree.kt b/kmath-ast/src/jsMain/kotlin/kscience/kmath/estree/estree.kt index 5036e96c0..f9996b61a 100644 --- a/kmath-ast/src/jsMain/kotlin/kscience/kmath/estree/estree.kt +++ b/kmath-ast/src/jsMain/kotlin/kscience/kmath/estree/estree.kt @@ -62,7 +62,7 @@ internal fun MST.compileWith(algebra: Algebra): Expression { /** - * Compiles an [MST] to ASM using given algebra. + * Compiles an [MST] to ESTree generated expression using given algebra. * * @author Alexander Nozik. */ @@ -70,7 +70,7 @@ public fun Algebra.expression(mst: MST): Expression = mst.compileWith(this) /** - * Optimizes performance of an [MstExpression] using ASM codegen. + * Optimizes performance of an [MstExpression] by compiling it into ESTree generated expression. * * @author Alexander Nozik. */