diff options
author | ArghKevin <kagheli@student.sdccd.edu> | 2024-05-08 23:06:21 -0700 |
---|---|---|
committer | ArghKevin <kagheli@student.sdccd.edu> | 2024-05-08 23:06:21 -0700 |
commit | dad2361ea75d9198fbf17f8f274c05f00c378898 (patch) | |
tree | e88754bc6802ea9e629ae21595c3cbd6fbaf679e /src/LineGraph.java | |
parent | f9268dd7e0e7a91e7a615bfffe18bceef31eae0d (diff) |
Fix Javadoc comments.
Diffstat (limited to 'src/LineGraph.java')
-rw-r--r-- | src/LineGraph.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/LineGraph.java b/src/LineGraph.java index b698462..4e05bb7 100644 --- a/src/LineGraph.java +++ b/src/LineGraph.java @@ -16,7 +16,7 @@ import javax.swing.*; public class LineGraph { int[][] coordinates; // A line graph has-a set of coordinates - /* + /** * Constructor. */ public LineGraph() { @@ -24,7 +24,7 @@ public class LineGraph { } - /* + /** * Set a point at a pair of coordinates. */ void setCoordinates(int y, int x) { |