summaryrefslogtreecommitdiff
path: root/src/LineGraph.java
diff options
context:
space:
mode:
authorArghKevin <kagheli@student.sdccd.edu>2024-05-08 23:06:21 -0700
committerArghKevin <kagheli@student.sdccd.edu>2024-05-08 23:06:21 -0700
commitdad2361ea75d9198fbf17f8f274c05f00c378898 (patch)
treee88754bc6802ea9e629ae21595c3cbd6fbaf679e /src/LineGraph.java
parentf9268dd7e0e7a91e7a615bfffe18bceef31eae0d (diff)
Fix Javadoc comments.
Diffstat (limited to 'src/LineGraph.java')
-rw-r--r--src/LineGraph.java4
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) {