diff --git a/src/loops_ii/drawing_isosceles_triangles.md b/src/loops_ii/drawing_isosceles_triangles.md index 64fb14a..b17f8af 100644 --- a/src/loops_ii/drawing_isosceles_triangles.md +++ b/src/loops_ii/drawing_isosceles_triangles.md @@ -8,7 +8,7 @@ Another fun shape is the isosceles triangle. ***** ``` -For this one, the each row of the triangle needs to have spaces before it to shift it in to the +For this one, each row of the triangle needs to have spaces before it to shift it in to the center. How much each row needs to be shifted depends on how big the trangle will be overall. In this case with three rows of `*`s, the top `*` needs two space characters before it diff --git a/src/loops_ii/empty_statements.md b/src/loops_ii/empty_statements.md index 6371eac..cfc47ce 100644 --- a/src/loops_ii/empty_statements.md +++ b/src/loops_ii/empty_statements.md @@ -14,7 +14,6 @@ for (int i = 6; i > 2;) { // 5 // 4 // 3 -// 2 ~} ```