Skip to content

Commit

Permalink
Update example_versioned_docs/version-latest/07-while.md
Browse files Browse the repository at this point in the history
Co-authored-by: Chris Rybicki <[email protected]>
  • Loading branch information
boyney123 and Chriscbr authored Sep 11, 2024
1 parent 3253bbf commit 376e148
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;

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

0 comments on commit 376e148

Please sign in to comment.