Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/content/docs/learning-course/stage0/conditionals.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down