Skip to content

Commit 5b06ba4

Browse files
authored
Update Graph.java
1 parent bd229cd commit 5b06ba4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/lv/id/jc/algorithm/graph/Graph.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
/**
88
* A generic graph representation
99
*
10-
* @param <T> type of vertex id
10+
* @param <T> the type of vertex id in this graph
1111
*/
1212
public record Graph<T>(Map<T, Map<T, Number>> nodes) {
1313

0 commit comments

Comments
 (0)