77
88/**
99 * <img src="https://lh5.googleusercontent.com/-B3Q59gpYW8o/T4tA2k_TYUI/AAAAAAAAAjo/WiqdoXjbkb0/s65/Tortoise.png" align="left" >
10- * The Tortoise allows you to draw lines and shapes by moving it around on the canvas
10+ * The Tortoise allows you to draw lines and shapes by moving it around on the window
1111 */
1212public class Tortoise
1313{
@@ -42,11 +42,11 @@ public static int getSpeed()
4242 }
4343 /**
4444 * Sets the color drawn by the Tortoise. <br/>
45- * <div><b>Example:</b> {@code Tortoise.setPenColor(Colors .Reds.Red)}</div>
45+ * <div><b>Example:</b> {@code Tortoise.setPenColor(PenColors .Reds.Red)}</div>
4646 *
4747 * @param color
4848 * the color of the pen
49- * @see Colors
49+ * @see PenColors
5050 */
5151 public static void setPenColor (Color color )
5252 {
@@ -178,26 +178,24 @@ public static double getAngle()
178178 * Changes the type of animal you are using. <br/>
179179 * <div><b>Example:</b> {@code Tortoise.setAnimal(Animals.Spider);}</div>
180180 *
181- * @return the angle in degrees of the Tortoise
182181 * @see Animals
183182 */
184183 public static void setAnimal (Animals animal )
185184 {
186185 turtle ().setAnimal (animal );
187186 }
188187 /**
189- * Changes the type of animal you are using. <br/>
190- * <div><b>Example:</b> {@code Tortoise.setAnimal (Animals.Spider );}</div>
188+ * Blows up your turtle! <br/>
189+ * <div><b>Example:</b> {@code Tortoise.explode (Animals.ExplodedTurtle );}</div>
191190 *
192- * @return the angle in degrees of the Tortoise
193191 * @see Animals
194192 */
195193 public static void explode ()
196194 {
197195 turtle ().setAnimal (Animals .ExplodedTurtle );
198196 }
199197 /**
200- * Makes it so the tortoise will not draw a line of color out of it's butt. <br/>
198+ * Makes it so the tortoise will not draw a line of color out of its butt. <br/>
201199 * <b>Example:</b> {@code Tortoise.penUp()}
202200 */
203201 public static void penUp ()
@@ -221,7 +219,7 @@ public static void clear()
221219 turtle ().clear ();
222220 }
223221 /**
224- * Hides the tortoise, you will still see the pen markings it made before and after it hid . <br/>
222+ * Hides the tortoise, you will still see the pen markings it made before and after it's hidden . <br/>
225223 * <b>Example:</b> {@code Tortoise.hide()}
226224 */
227225 public static void hide ()
0 commit comments