Skip to content

Commit

Permalink
Tweak doc comment
Browse files Browse the repository at this point in the history
  • Loading branch information
FeldrinH committed Oct 23, 2023
1 parent 3e35617 commit 2725a79
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/ee/ut/dendroloj/Dendrologist.java
Original file line number Diff line number Diff line change
Expand Up @@ -130,8 +130,8 @@ public static <T> void drawTree(T root, Function<T, String> label, Function<T, L
* Draws a graph based on the provided graph canvas.
*
* @param graphCanvas canvas containing the graph to draw
* (Use {@link GraphCanvas} methods to draw the vertices and edges before passing the canvas to this method.
* Note that vertices and edges drawn to the canvas <i>after</i> calling this method will <i>not</i> appear in the rendered graph.)
* (use {@link GraphCanvas} methods to draw the vertices and edges before passing the canvas to this method;
* note that vertices and edges drawn to the canvas <i>after</i> calling this method will <i>not</i> appear in the rendered graph)
*/
public static void drawGraph(GraphCanvas<?> graphCanvas) {
if (isHeadless()) {
Expand Down

0 comments on commit 2725a79

Please sign in to comment.