From e3bee78030591506f50b55b715495250c844ef6d Mon Sep 17 00:00:00 2001 From: Hugo Locurcio Date: Mon, 9 Sep 2019 17:21:26 +0200 Subject: [PATCH] Fix mixed indentation in the README This makes the Loop example script display correctly on GitHub. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b32859e5..e3022e1d 100644 --- a/README.md +++ b/README.md @@ -320,7 +320,7 @@ let x = 10; loop { print(x); x = x - 1; - if x == 0 { break; } + if x == 0 { break; } } ```