1
0
mirror of https://github.com/hsoft/collapseos.git synced 2025-04-05 03:48:40 +11:00

Fixed typo (changed thruth -> truth)

This commit is contained in:
simulacr4m 2020-03-13 17:40:30 -05:00
parent d60ea4cb30
commit 419d8cdb89

View File

@ -128,7 +128,7 @@ run the line (followed by the next, and so on).
`if <cond> <cmds>`: If specified condition is true, execute the rest of the
line. Otherwise, do nothing. For example, `if 2>1 print 12` prints `12` and `if
2<1 print 12` does nothing. The argument for this command is a "thruth
2<1 print 12` does nothing. The argument for this command is a "truth
expression".
`while <cond> <cmds>`: As long as specified condition is true, execute specified