From e06469f576d16de77a27d19249eb7dc6db628e7d Mon Sep 17 00:00:00 2001 From: Henok Woldesenbet <62161211+wldeh@users.noreply.github.com> Date: Fri, 1 Sep 2023 03:42:43 -0700 Subject: [PATCH] fix: correct typo in js-ir-compiler.md (#3765) --- docs/topics/js/js-ir-compiler.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/topics/js/js-ir-compiler.md b/docs/topics/js/js-ir-compiler.md index 36a342e3b1b..91f5eca383a 100644 --- a/docs/topics/js/js-ir-compiler.md +++ b/docs/topics/js/js-ir-compiler.md @@ -26,7 +26,7 @@ kotlin { * `LEGACY` uses the old compiler backend. * `BOTH` compiles your project with the new IR compiler as well as the default compiler backend. Use this mode for [authoring libraries compatible with both backends](#authoring-libraries-for-the-ir-compiler-with-backwards-compatibility). -> The old compiler backend has been deprecated since Kotlin 1.8.0. Starting with Kotlin 1.9.0, using compiler types `LEGACY` of `BOTH` leads to an error. +> The old compiler backend has been deprecated since Kotlin 1.8.0. Starting with Kotlin 1.9.0, using compiler types `LEGACY` or `BOTH` leads to an error. > {type="warning"}