Skip to content

Commit

Permalink
add line break
Browse files Browse the repository at this point in the history
  • Loading branch information
fluentfuture committed Jun 26, 2020
1 parent 8c3b9dd commit d94b214
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions core/src/main/java/com/google/mu/util/graph/GraphWalker.java
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,9 @@ public final Optional<Stream<N>> detectCycleFrom(Iterable<? extends N> startNode

/**
* Fully traverses the graph by starting from {@code startNodes}, and returns an immutable list of
* nodes in topological order. Unlike the other {@code Walker} utilities, this method is not lazy:
* nodes in topological order.
*
* <p>Unlike the other {@code Walker} utilities, this method is not lazy:
* it has to traverse the entire graph in order to figure out the topological order.
*
* @param startNodes the entry point nodes to start traversing the graph.
Expand All @@ -128,7 +130,9 @@ public final Optional<Stream<N>> detectCycleFrom(Iterable<? extends N> startNode

/**
* Fully traverses the graph by starting from {@code startNodes}, and returns an immutable list of
* nodes in topological order. Unlike the other {@code Walker} utilities, this method is not lazy:
* nodes in topological order.
*
* <p>Unlike the other {@code Walker} utilities, this method is not lazy:
* it has to traverse the entire graph in order to figure out the topological order.
*
* @param startNodes the entry point nodes to start traversing the graph.
Expand Down

0 comments on commit d94b214

Please sign in to comment.