Skip to content

Commit

Permalink
docs(analyzer): Fix a typo
Browse files Browse the repository at this point in the history
Signed-off-by: Frank Viernau <[email protected]>
  • Loading branch information
fviernau committed Oct 30, 2023
1 parent 320bfc9 commit e48657f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion analyzer/src/main/kotlin/managers/utils/Graph.kt
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ import org.apache.logging.log4j.kotlin.logger
/**
* A class to represent a graph with dependencies between nodes of type [T]. The representation is an adjacency list
* implemented by a map whose keys are nodes and whose values are the target nodes of the outgoing edges for the
* repective key.
* respective key.
*/
internal class Graph<T> private constructor(private val nodeMap: MutableMap<T, MutableSet<T>>) {
constructor() : this(mutableMapOf())
Expand Down

0 comments on commit e48657f

Please sign in to comment.