From 3c5602017fda134ea2304f897ff92e5e8b2a7b18 Mon Sep 17 00:00:00 2001 From: Alexander Gorshenev Date: Fri, 20 Oct 2017 15:52:25 +0300 Subject: [PATCH] Several typos in comments and messages. --- backend.native/tests/build.gradle | 2 +- klib/build.gradle | 4 ++-- klib/src/testLibrary/kotlin/test_platform_lib.kt | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/backend.native/tests/build.gradle b/backend.native/tests/build.gradle index 0375a00065d..5e91bdb03ec 100644 --- a/backend.native/tests/build.gradle +++ b/backend.native/tests/build.gradle @@ -1245,7 +1245,7 @@ task link_default_libs(type: RunStandaloneKonanTest) { task link_testLib_explicitly(type: RunKonanTest) { dependsOn ':klib:installTestLibrary' - goldValue = "This is a side effect of a test library linked into the binary.\nYou should not be seing this.\n\nHello\n" + goldValue = "This is a side effect of a test library linked into the binary.\nYou should not be seeing this.\n\nHello\n" source = "link/omit/hello.kt" // We force library inclusion, so need to see the warning banner. flags = ['-l', 'testLibrary'] diff --git a/klib/build.gradle b/klib/build.gradle index fd938646d40..0901bf1985f 100644 --- a/klib/build.gradle +++ b/klib/build.gradle @@ -27,8 +27,8 @@ dependencies { def dist = rootProject.file('dist').absolutePath -// TODO: Ideally we want to write just konanArtifacts{} clouse here, -// but we need to make Kotlin Native Gradle Plugin a dependence +// TODO: Ideally we want to write just konanArtifacts{} clause here, +// but we need to make Kotlin/Native Gradle Plugin a dependence // of our buildScripts first. task compileKonanTestLibrary(type: Exec) { dependsOn ':dist' diff --git a/klib/src/testLibrary/kotlin/test_platform_lib.kt b/klib/src/testLibrary/kotlin/test_platform_lib.kt index 080bc2800d7..424136a90d5 100644 --- a/klib/src/testLibrary/kotlin/test_platform_lib.kt +++ b/klib/src/testLibrary/kotlin/test_platform_lib.kt @@ -2,7 +2,7 @@ package test.konan.platform fun produceMessage() { println("""This is a side effect of a test library linked into the binary. -You should not be seing this. +You should not be seeing this. """) }