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