From 3a25a2c38ee33d4873bcb545f1cc1293d34d159a Mon Sep 17 00:00:00 2001 From: Sebastian Schuberth Date: Wed, 18 Dec 2024 09:21:55 +0100 Subject: [PATCH] docs(analyzer): Improve `PackageManager` class documentation Specifically, clarify that the `projectType` does not refer to dependencies. Signed-off-by: Sebastian Schuberth --- analyzer/src/main/kotlin/PackageManager.kt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/analyzer/src/main/kotlin/PackageManager.kt b/analyzer/src/main/kotlin/PackageManager.kt index 0cfa4179c5478..a8739f377cf32 100644 --- a/analyzer/src/main/kotlin/PackageManager.kt +++ b/analyzer/src/main/kotlin/PackageManager.kt @@ -54,9 +54,9 @@ typealias ManagedProjectFiles = Map> typealias ProjectResults = Map> /** - * A class to represent a package manager of the given [managerName] that handles dependencies for the given - * [projectType]. The analysis of any projects and their dependencies starts in the [analysisRoot] directory using the - * given general [analyzerConfig]. Per-repository configuration is passed in [repoConfig]. + * A class to represent a package manager with the given [managerName] that handles projects of the given [projectType]. + * The analysis of any projects and their dependencies starts in the [analysisRoot] directory using the given + * [analyzerConfig]. Any project-specific configuration stored in the repository is passed as [repoConfig]. */ abstract class PackageManager( val managerName: String,