[factor/en] minor typo. dont -> don't

This commit is contained in:
Jacob Ward 2016-03-05 17:57:08 -07:00
parent a7da2cedb6
commit e2221d36cc

View File

@ -41,7 +41,7 @@ Code in this file can be typed into Factor, but not directly imported because th
3 dup - ! duplicate the top item (1st now equals 2nd): 3 - 3
2 5 swap / ! swap the top with the second element: 5 / 2
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
1 2 clear .s ! wipe out the entire stack
1 2 3 4 over .s ! duplicate the second item to the top: 1 2 3 4 3