From ae42b62aa6e75c172e450ab397ab902c40697b9b Mon Sep 17 00:00:00 2001 From: mo khan Date: Sun, 11 Aug 2019 18:34:29 -0600 Subject: fix javadoc --- src/Q9/Robot.java | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'src/Q9/Robot.java') diff --git a/src/Q9/Robot.java b/src/Q9/Robot.java index ee495e6..6f9d2c0 100644 --- a/src/Q9/Robot.java +++ b/src/Q9/Robot.java @@ -66,7 +66,11 @@ public class Robot { this.y = y; } - /** @return true if the robot is at the given coordinate */ + /** + * @param x the x coordinate + * @param y the y coordinate + * @return true if the robot is at the given coordinate + * */ public boolean atPosition(int x, int y) { return getX() == x && getY() == y; } -- cgit v1.2.3