fixed a typo

This commit is contained in:
PhazonicRidley 2020-04-01 15:25:57 -07:00 committed by GitHub
parent da07b7686e
commit f8db34c5e1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -62,7 +62,7 @@ You can use `if()`, `goto()`, `check()` and `math()` functions to control the fl
```
@i = setInt(0);
?LOOP;
@check = check(@i "<=", 10);
@check = check(@i, "<=", 10);
if (@check){
@i = math(@i, "+", 1);
printInt(@i);