diff --git a/model/src/main/kotlin/DependencyGraphNavigator.kt b/model/src/main/kotlin/DependencyGraphNavigator.kt index 41e2ba2eb3b79..dc2febc6219fc 100644 --- a/model/src/main/kotlin/DependencyGraphNavigator.kt +++ b/model/src/main/kotlin/DependencyGraphNavigator.kt @@ -45,7 +45,7 @@ class DependencyGraphNavigator( override fun scopeNames(project: Project): Set = project.scopeNames.orEmpty() override fun directDependencies(project: Project, scopeName: String): Sequence { - // TODO: Relax the assumption that package manager name start with the name of the type of project + // TODO: Relax this assumption that package manager names start with the name of the type of project // they manage, for example that "GradleInspector" manages "Gradle" projects. val projectType = project.id.type.removeSuffix("Project") val managers = graphs.keys.filter { it.startsWith(projectType) }