]> gitweb.factorcode.org Git - factor.git/commitdiff
help.tour: fix typo in tour.factor
authorIkko Eltociear Ashimine <eltociear@gmail.com>
Sun, 25 Feb 2024 15:06:34 +0000 (00:06 +0900)
committerGiftpflanze <80504430+gifti258@users.noreply.github.com>
Sun, 25 Feb 2024 15:20:01 +0000 (16:20 +0100)
refering -> referring

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