From 01c20373c389e2463027a523bdabafe0c75db18c Mon Sep 17 00:00:00 2001 From: Nghia N <53877485+nghian95@users.noreply.github.com> Date: Mon, 11 May 2020 00:57:33 -0500 Subject: [PATCH 1/3] Fixing typo eb -> be --- data/part-1/2-printing.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/part-1/2-printing.md b/data/part-1/2-printing.md index e35319fd5..c4d19ec1c 100644 --- a/data/part-1/2-printing.md +++ b/data/part-1/2-printing.md @@ -548,4 +548,4 @@ public class Comments { } ``` -The last line of the example shows a particularly handy use-case for comments. Code that has been written does not need to eb deleted to try out something else. +The last line of the example shows a particularly handy use-case for comments. Code that has been written does not need to be deleted to try out something else. From bb87fe60aefce7303c3aad478f7abb822e732521 Mon Sep 17 00:00:00 2001 From: Nghia N <53877485+nghian95@users.noreply.github.com> Date: Mon, 11 May 2020 13:38:41 -0500 Subject: [PATCH 2/3] Revert "Fixing typo" This reverts commit 01c20373c389e2463027a523bdabafe0c75db18c. --- data/part-1/2-printing.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/part-1/2-printing.md b/data/part-1/2-printing.md index c4d19ec1c..e35319fd5 100644 --- a/data/part-1/2-printing.md +++ b/data/part-1/2-printing.md @@ -548,4 +548,4 @@ public class Comments { } ``` -The last line of the example shows a particularly handy use-case for comments. Code that has been written does not need to be deleted to try out something else. +The last line of the example shows a particularly handy use-case for comments. Code that has been written does not need to eb deleted to try out something else. From aa2c04f4cec86797ddc4d74d6945e74ce2f77d1b Mon Sep 17 00:00:00 2001 From: Nghia N <53877485+nghian95@users.noreply.github.com> Date: Tue, 12 May 2020 13:22:04 -0500 Subject: [PATCH 3/3] Fixing typos funciton -> function Removed an unnecessary comma. --- data/part-2/1-problems-and-patterns.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/part-2/1-problems-and-patterns.md b/data/part-2/1-problems-and-patterns.md index 525e33547..feec7896a 100644 --- a/data/part-2/1-problems-and-patterns.md +++ b/data/part-2/1-problems-and-patterns.md @@ -464,7 +464,7 @@ public class Program { -Write a program, that reads an integer from the user. If the number is less than 0, the program prints the given integer multiplied by -1. In all other cases, the program prints the number itself. A few examples of how the program's expected to funciton are shown below: +Write a program that reads an integer from the user. If the number is less than 0, the program prints the given integer multiplied by -1. In all other cases, the program prints the number itself. A few examples of how the program's expected to function are shown below: