Update User Manual.md

This commit is contained in:
David Schmenk 2014-05-26 20:04:11 -07:00
parent ee4597734c
commit 6b9402ec3e

View File

@ -428,7 +428,7 @@ when TRUE
wend
```
##### FOR TO,DOWNTO [STEP]/NEXT
##### FOR \<TO,DOWNTO\> [STEP]/NEXT
Iteration over a range is handled with the `for`/`next` loop. When iterating from a smaller to larger value, the `to` construct is used; when iterating from larger to smaller, the `downto` construct is used.
```
for a = 1 to 10