From 700e4f2f26f78768b29098b38df44e7de5391d7f Mon Sep 17 00:00:00 2001 From: Paul Sinnett Date: Sat, 4 Oct 2025 20:59:06 +0100 Subject: [PATCH] fix for parsing issue --- en/step_1.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/en/step_1.md b/en/step_1.md index 8feb01f..ba51c22 100644 --- a/en/step_1.md +++ b/en/step_1.md @@ -24,9 +24,9 @@ def eye(): def draw(): global BLUE, BLACK, WHITE - BLUE = color(1, 32, 100) - BLACK = color(0, 0, 0) - WHITE = color(255, 255, 255) + BLUE = Color(1, 32, 100) + BLACK = Color(0, 0, 0) + WHITE = Color(255, 255, 255) background(WHITE) translate(width/2, height/2) # Move screen to the middle