name parameters for clarity

Change-Id: If1879de10586b89aa572d04d5ad4e6157f2f4f30
This commit is contained in:
Usta
2021-12-15 12:45:49 -05:00
committed by Usta Shrestha
parent 2a1291d01d
commit 6b1ffa423d

View File

@@ -267,7 +267,7 @@ type BaseModuleContext interface {
//
// The Modules passed to the visit function should not be retained outside of the visit function, they may be
// invalidated by future mutators.
WalkDeps(visit func(Module, Module) bool)
WalkDeps(visit func(child, parent Module) bool)
// WalkDepsBlueprint calls visit for each transitive dependency, traversing the dependency
// tree in top down order. visit may be called multiple times for the same (child, parent)