From e591de5b6ec8f8e849e1cea9dc0cbc10954821c7 Mon Sep 17 00:00:00 2001 From: jbranchaud Date: Wed, 27 Jun 2018 16:52:01 -0500 Subject: [PATCH] Fix the code block language type --- reason/break-out-of-a-while-loop.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reason/break-out-of-a-while-loop.md b/reason/break-out-of-a-while-loop.md index dffa5b1..fd02b51 100644 --- a/reason/break-out-of-a-while-loop.md +++ b/reason/break-out-of-a-while-loop.md @@ -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^) {