Skip to content

Commit

Permalink
fix minor formatting and grammar issues
Browse files Browse the repository at this point in the history
  • Loading branch information
creme332 committed Jul 25, 2024
1 parent 0790675 commit 4642a6e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public DrawCircleTutorial() throws InvalidPathException, InvalidIconSizeExceptio
regular);

doc.insertString(doc.getLength(),
"\n\n1. Click on the circle icon (third icon from the left) in the menu bar and select the first option in the dropdown menu.\n",
"\n\n1. Click on the circle icon (third icon from the left) in the menu bar and select the first option in the dropdown menu.\n\n",
regular);

insertImage("step-1.png");
Expand All @@ -57,13 +57,13 @@ public DrawCircleTutorial() throws InvalidPathException, InvalidIconSizeExceptio
"\n\n2. After selecting the circle center with your cursor, you will be prompted to enter the circle radius. ",
regular);
doc.insertString(doc.getLength(),
"The radius must be an integer greater than 0. \n",
"The radius must be an integer greater than 0. \n\n",
highlightRed);

insertImage("step-3.png");

doc.insertString(doc.getLength(),
"\n\n6. After entering a valid radius, you should see a newly drawn circle:\n",
"\n\n6. After entering a valid radius, you should see a newly drawn circle:\n\n",
regular);

insertImage("step-4.png");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public DrawEllipseTutorial() throws InvalidPathException, InvalidIconSizeExcepti
"\n\n2. Move your mouse cursor on the canvas and click on a point where you want your first ellipse focus to be.\n",
regular);
doc.insertString(doc.getLength(),
"\n\n3. Click on another point where you want your second ellipse focus to be.\n\n",
"\n\n3. Click on another point where you want your second ellipse focus to be.\n",
regular);

doc.insertString(doc.getLength(),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public DrawPolygonTutorial() throws InvalidPathException, InvalidIconSizeExcepti
model.addKeyword("irregular");

doc.insertString(doc.getLength(),
"In this tutorial you will learn how to draw an irregular polygon and a regular polygon.\n\n",
"In this tutorial you will learn how to draw regular and irregular polygons.\n\n",
regular);

writeIrregularPolygonSection();
Expand Down

0 comments on commit 4642a6e

Please sign in to comment.