Skip to content

Commit

Permalink
fixing example
Browse files Browse the repository at this point in the history
  • Loading branch information
David Boyne authored and David Boyne committed Sep 11, 2024
1 parent 51c3f10 commit 7c55356
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion example_versioned_docs/version-latest/07-while.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ While loops repeatedly check a condition and run a block of code until the condi
```js playground title="main.w"
let var i = 0;

whilei < 2 {
while i < 2 {
log("while {i}");
i = i + 1;
}
Expand Down

0 comments on commit 7c55356

Please sign in to comment.