Fix KDoc comments

This commit is contained in:
Iaroslav Postovalov 2020-12-22 12:58:35 +07:00
parent cfc13cda8f
commit d657f40e3f
No known key found for this signature in database
GPG Key ID: 46E15E4A31B3BCD7

View File

@ -62,7 +62,7 @@ internal fun <T> MST.compileWith(algebra: Algebra<T>): Expression<T> {
/** /**
* Compiles an [MST] to ASM using given algebra. * Compiles an [MST] to ESTree generated expression using given algebra.
* *
* @author Alexander Nozik. * @author Alexander Nozik.
*/ */
@ -70,7 +70,7 @@ public fun <T : Any> Algebra<T>.expression(mst: MST): Expression<T> =
mst.compileWith(this) 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. * @author Alexander Nozik.
*/ */