From d3a0247a7266ed48c7781db83f648f5585e6dc8e Mon Sep 17 00:00:00 2001 From: angoway Date: Sun, 10 Nov 2024 00:48:54 -0800 Subject: [PATCH] Updated lessonside text for Lesson 2 --- src/components/shared/LessonSide/LessonSideContent.JSON | 1 - 1 file changed, 1 deletion(-) diff --git a/src/components/shared/LessonSide/LessonSideContent.JSON b/src/components/shared/LessonSide/LessonSideContent.JSON index fbcf697..1be87ce 100644 --- a/src/components/shared/LessonSide/LessonSideContent.JSON +++ b/src/components/shared/LessonSide/LessonSideContent.JSON @@ -16,7 +16,6 @@ "id": "lesson-side-body", "text": "Computers use the coordinate system to tell the cursor where to move. The coordinate system is a grid made of small chunks called units. The cursor starts out at the center of the grid and counts out some number of units to move. For example, the point (2, 1) would be two units RIGHT and one unit UP from the center." }, - {"id": "code-text", "text": "turtle.goto(-1,2)"}, { "id": "lesson-side-body", "text": "When looking at these numbers, remember that the number to move sideways comes first. A positive number means you move right, and a negative number means you move left. And when moving up and down with the second number, a positive number means you move up and a negative means down."