From 501bd6518e18f91d50edf084a2291057c70f739a Mon Sep 17 00:00:00 2001 From: Paul S Date: Mon, 23 Oct 2023 02:31:47 +0300 Subject: [PATCH] Update SemigraphSolver.scala (#2030) docs --- .../izumi/distage/planning/solver/SemigraphSolver.scala | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/distage/distage-core/src/main/scala/izumi/distage/planning/solver/SemigraphSolver.scala b/distage/distage-core/src/main/scala/izumi/distage/planning/solver/SemigraphSolver.scala index 89d8f463f8..cc976d5875 100644 --- a/distage/distage-core/src/main/scala/izumi/distage/planning/solver/SemigraphSolver.scala +++ b/distage/distage-core/src/main/scala/izumi/distage/planning/solver/SemigraphSolver.scala @@ -17,12 +17,12 @@ import scala.collection.mutable /** * Combined Garbage Collector, Conflict Resolver and Mutation Resolver * - * Traces the graph from the roots, solves conflict by applying axis rules and + * Traces the graph from the roots, solves the conflicts just in time by applying the axis rules, and * orders mutators in sane and predictable order. * - * "predecessor" stands for "a node which should be processed before it's successor". + * "predecessor" stands for "a node which should be processed before its successor". * - * Map of predecessors is a map where key is a dependant and value is a set of all its direct dependencies + * Map of predecessors is a map where the key is a dependent and the value is a set of all its direct dependencies */ trait SemigraphSolver[N, I, V] { import izumi.distage.planning.solver.SemigraphSolver.*