summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorJacob Ward <jacobward1898@gmail.com>2016-03-14 10:27:10 -0600
committerJacob Ward <jacobward1898@gmail.com>2016-03-14 10:27:10 -0600
commit779395e395690b50b666ff1072eb4b242c06dada (patch)
tree04eae13bcd2b2603d45aaaa1bbae364274ad6484
parent25301f779fc681c803b574f141a7e16e08bbfdc5 (diff)
parent03da44dd0b5ef9e351adf5881c25d1d25803c496 (diff)
Merge pull request #2192 from JacobCWard/typos-3
[forth/en] dont -> don't
-rw-r--r--forth.html.markdown2
1 files changed, 1 insertions, 1 deletions
diff --git a/forth.html.markdown b/forth.html.markdown
index b4a5581b..55d755b2 100644
--- a/forth.html.markdown
+++ b/forth.html.markdown
@@ -54,7 +54,7 @@ Forth, but most of what is written here should work elsewhere.
3 dup - \ duplicate the top item (1st now equals 2nd): 3 - 3
2 5 swap / \ swap the top with the second element: 5 / 2
6 4 5 rot .s \ rotate the top 3 elements: 4 5 6
-4 0 drop 2 / \ remove the top item (dont print to screen): 4 / 2
+4 0 drop 2 / \ remove the top item (don't print to screen): 4 / 2
1 2 3 nip .s \ remove the second item (similar to drop): 1 3
\ ---------------------- More Advanced Stack Manipulation ----------------------