1
0
mirror of https://github.com/jbranchaud/til synced 2026-01-03 07:08:01 +00:00

Fix the code block language type

This commit is contained in:
jbranchaud
2018-06-27 16:52:01 -05:00
parent 46c5ed7e8a
commit e591de5b6e

View File

@@ -5,7 +5,7 @@ eventually want to break out of the loop. For that, you are going to need to
invalidate the _while condition_. One way of going about this is creating a
mutable ref, changing it from true to false when a certain condition is met.
```reasonml
```reason
let break = ref(true);
while (break^) {