From 6e0aa007da1563fb2f4d4cfbd26ba2a9b8c70809 Mon Sep 17 00:00:00 2001 From: zhelenskiy <55230817+zhelenskiy@users.noreply.github.com> Date: Sat, 3 Oct 2020 20:47:35 +0300 Subject: [PATCH] Typos fixed --- .../org/jetbrains/kotlin/benchmarks/GenerateIrRuntime.kt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/js/js.tests/test/org/jetbrains/kotlin/benchmarks/GenerateIrRuntime.kt b/js/js.tests/test/org/jetbrains/kotlin/benchmarks/GenerateIrRuntime.kt index 57852d2c133..b8b50d7d694 100644 --- a/js/js.tests/test/org/jetbrains/kotlin/benchmarks/GenerateIrRuntime.kt +++ b/js/js.tests/test/org/jetbrains/kotlin/benchmarks/GenerateIrRuntime.kt @@ -161,7 +161,7 @@ class GenerateIrRuntime { val files = fullRuntimeSourceSet val analysisResult = doFrontEnd(files) - runBenchWithWarmup("Pipeline withput FrontEnd", 40, 10, MeasureUnits.MICROSECONDS, pre = System::gc) { + runBenchWithWarmup("Pipeline without FrontEnd", 40, 10, MeasureUnits.MICROSECONDS, pre = System::gc) { val rawModuleFragment = doPsi2Ir(files, analysisResult) val modulePath = doSerializeModule(rawModuleFragment, analysisResult.bindingContext, files) @@ -423,7 +423,7 @@ class GenerateIrRuntime { val rawModuleFragment = doPsi2Ir(files, analysisResult) val modulePath = doSerializeModule(rawModuleFragment, analysisResult.bindingContext, files) - runBenchWithWarmup("Deserializtion and Backend", 40, 10, MeasureUnits.MICROSECONDS, pre = System::gc) { + runBenchWithWarmup("Deserialization and Backend", 40, 10, MeasureUnits.MICROSECONDS, pre = System::gc) { val (module, symbolTable, irBuiltIns, linker) = doDeserializeModule(modulePath) doBackEnd(module, symbolTable, irBuiltIns, linker) } @@ -590,4 +590,4 @@ class GenerateIrRuntime { return jsProgram.toString() } -} \ No newline at end of file +}