From 1e288c03c3a2ed3e2eebb44849055f5be0bb9c2e Mon Sep 17 00:00:00 2001 From: Dmitry Savvinov Date: Fri, 23 Aug 2019 14:07:16 +0300 Subject: [PATCH] Minor: fix typos in KDoc --- .../kotlin/idea/caches/resolve/KotlinCacheServiceImpl.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/idea/idea-analysis/src/org/jetbrains/kotlin/idea/caches/resolve/KotlinCacheServiceImpl.kt b/idea/idea-analysis/src/org/jetbrains/kotlin/idea/caches/resolve/KotlinCacheServiceImpl.kt index 9b54e366fb2..94da09d4684 100644 --- a/idea/idea-analysis/src/org/jetbrains/kotlin/idea/caches/resolve/KotlinCacheServiceImpl.kt +++ b/idea/idea-analysis/src/org/jetbrains/kotlin/idea/caches/resolve/KotlinCacheServiceImpl.kt @@ -70,9 +70,9 @@ import java.util.concurrent.ConcurrentHashMap internal val LOG = Logger.getInstance(KotlinCacheService::class.java) /** - * Regulates what sources should be analyzed together. + * Regulates which sources should be analyzed together. * - * There are exactly two descendants, which are in string one-to-one correspondence with [ResolutionModeComponent.Mode] pick (meaning + * There are exactly two descendants, which are in strong one-to-one correspondence with [ResolutionModeComponent.Mode] (meaning * that after checking value of ResolutionMode, it's safe to downcast settings instance to the respective type): * - [PlatformAnalysisSettingsImpl] should be used iff we're working under [Mode.SEPARATE], and will create separate * facade for each platforms, sdk, builtIns settings and other stuff.