We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 081c84f commit 5cc445aCopy full SHA for 5cc445a
1 file changed
src/main/kotlin/com/lambda/interaction/construction/simulation/Results.kt
@@ -29,8 +29,8 @@ interface Results<T : BuildResult> {
29
concurrentResults.add(
30
dependencyStack
31
.asReversed()
32
- .fold(result) { acc, dependable ->
33
- with(dependable) { dependentUpon(acc) }
+ .fold(result) { acc, dependent ->
+ with(dependent) { dependentUpon(acc) }
34
}
35
)
36
0 commit comments