From 1ca8d2ab8866edb57c2461203e3230e9bc8a957f Mon Sep 17 00:00:00 2001 From: Sebastian Schuberth Date: Thu, 19 Dec 2024 18:27:58 +0100 Subject: [PATCH] docs(model): Trivially end comment sentences with dots Signed-off-by: Sebastian Schuberth --- model/src/test/kotlin/licenses/LicenseInfoResolverTest.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/model/src/test/kotlin/licenses/LicenseInfoResolverTest.kt b/model/src/test/kotlin/licenses/LicenseInfoResolverTest.kt index 1ac97552015f..47ed5ede2e46 100644 --- a/model/src/test/kotlin/licenses/LicenseInfoResolverTest.kt +++ b/model/src/test/kotlin/licenses/LicenseInfoResolverTest.kt @@ -592,7 +592,7 @@ class LicenseInfoResolverTest : WordSpec({ "resolve copyrights from authors in concluded license" { // In case of a concluded license (due to a package curation) verify that the authors named - // in the package curation are added as copyright statement under the concluded license + // in the package curation are added as copyright statement under the concluded license. val licenseInfos = listOf( createLicenseInfo( id = pkgId, @@ -608,7 +608,7 @@ class LicenseInfoResolverTest : WordSpec({ val result = resolver.resolveLicenseInfo(pkgId) result should containCopyrightStatementsForLicenseExactly( "BSD-2-Clause", - // A "Copyright" prefix is added to the author (if it did not already exist) + // A "Copyright" prefix is added to the author (if it did not already exist). "Copyright (C) 2024 The Author", "Copyright (C) The Other Author" ) }