]> gitweb.factorcode.org Git - factor.git/blobdiff - basis/help/tour/tour.factor
help.tour: fix typo in tour.factor
[factor.git] / basis / help / tour / tour.factor
index 4cb95553361b408cacdea2e7f3f62a9aaf4fea13..e719020b14e382c97b13c0a5947ea10208afb2bf 100644 (file)
@@ -395,7 +395,7 @@ although it may be a bad idea to modify them.
 This { $link POSTPONE: \ } word requires a little explanation. It works like a sort of escape, allowing us to put a reference to the 
 next word on the stack, without executing it. This is exactly what we need, because { $link edit } is a word that takes words 
 themselves as arguments. This mechanism is similar to quotations, but while a quotation creates a new anonymous function, 
-here we are directly refering to the word { $snippet "multiple?" } .
+here we are directly referring to the word { $snippet "multiple?" } .
 
 Back to our task, you may notice that the words { $snippet "[2..b]" } and { $snippet "multiple?" } are just helper functions that you may not 
 want to expose directly. To hide them from view, you can wrap them in a private block like this