docs; fix example with 'continue' (#1007)

This commit is contained in:
tsukanov-as
2021-05-05 00:56:53 +03:00
committed by GitHub
parent eca90e29e9
commit aca7c70079

View File

@ -187,8 +187,8 @@ loop conditions).
<pre class="snippet">
for (i in [1, 2, 3, 4]) {
System.print(i) //> 1
if (i == 2) continue //> 3
if (i == 2) continue //> 1
System.print(i) //> 3
} //> 4
</pre>