summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorzlarsen <zlarsen@dmail.dixie.edu>2015-10-09 13:59:25 -0600
committerzlarsen <zlarsen@dmail.dixie.edu>2015-10-09 13:59:25 -0600
commitb1e4e89b843448058b5a4f076e0b6e0d3c51dfcb (patch)
treea8adf01b574cb4e51a7fd52a87ea6b9b4c628096
parent0d0c495c701acc77047df138e169e7cc7ece5f97 (diff)
fixes forth typo
changes util to until
-rw-r--r--forth.html.markdown2
1 files changed, 1 insertions, 1 deletions
diff --git a/forth.html.markdown b/forth.html.markdown
index f7c0bf34..1db85bf0 100644
--- a/forth.html.markdown
+++ b/forth.html.markdown
@@ -117,7 +117,7 @@ one-to-12 \ 0 1 2 3 4 5 6 7 8 9 10 11 12 ok
: threes ( n n -- ) ?do i . 3 +loop ; \ ok
15 0 threes \ 0 3 6 9 12 ok
-\ Indefinite loops with `begin` <stuff to do> <flag> `unil`:
+\ Indefinite loops with `begin` <stuff to do> <flag> `until`:
: death ( -- ) begin ." Are we there yet?" 0 until ; \ ok
\ ---------------------------- Variables and Memory ----------------------------