From fe94c9e1d5102d585194865bf744c5aa9feb754c Mon Sep 17 00:00:00 2001 From: Ben Bell <110692534+slowpoke111@users.noreply.github.com> Date: Mon, 27 Jul 2026 21:09:07 -0400 Subject: [PATCH] Correct typo for motor speed --- src/content/docs/learning-course/stage0/conditionals.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/docs/learning-course/stage0/conditionals.mdx b/src/content/docs/learning-course/stage0/conditionals.mdx index 7bb1b6ba..53177479 100644 --- a/src/content/docs/learning-course/stage0/conditionals.mdx +++ b/src/content/docs/learning-course/stage0/conditionals.mdx @@ -82,7 +82,7 @@ Looking at the example below, what should happen? The condition is `distance < 10`. We know `distance` is equal to 6, therefore we can think of the condition saying 6 < 10. 6 is less than 10 which makes the condition true. -This means the code inside the `if` block runs, which prints "Motors are spinning" and the spins the motors at half speed. +This means the code inside the `if` block runs, which prints "Motors are spinning" and the spins the motors at full speed. ## else