summaryrefslogtreecommitdiffhomepage
path: root/forth.html.markdown
diff options
context:
space:
mode:
authorven <vendethiel@hotmail.fr>2015-10-09 22:17:35 +0200
committerven <vendethiel@hotmail.fr>2015-10-09 22:17:35 +0200
commita5b9afc897afb3b7b6894672ad945970a373834a (patch)
tree2e7ac5aa9a8ce3d6e5743fd766184b5921b24475 /forth.html.markdown
parentef40704f9b66ae85d7a8a6853abbbf8810af3b90 (diff)
parentb1e4e89b843448058b5a4f076e0b6e0d3c51dfcb (diff)
Merge pull request #1430 from zlarsen/fixes-forth-typo
[Forth/en] fixes forth typo
Diffstat (limited to 'forth.html.markdown')
-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 ----------------------------