]> gitweb.factorcode.org Git - factor.git/commitdiff
listener-docs: fix wording
authorAlexander Iljin <ajsoft@yandex.ru>
Tue, 1 Nov 2016 17:35:10 +0000 (20:35 +0300)
committerJohn Benediktsson <mrjbq7@gmail.com>
Wed, 2 Nov 2016 15:01:26 +0000 (08:01 -0700)
basis/listener/listener-docs.factor

index 62390bfd5423201a7e8df81d01dbedb59e6a9855..c93fdfeb0cfdbe889c73a17c188f8c53b61b905d 100644 (file)
@@ -47,7 +47,7 @@ HELP: hide-all-vars
 { $description "Removes all variables from the watch list." } ;
 
 ARTICLE: "listener" "The listener"
-"The listener evaluates Factor expressions read from the input stream. Typically, you write Factor code in a text editor, load it from the listener by calling " { $link require } ", " { $link reload } " or " { $link run-file } ", and then test it from interactively."
+"The listener evaluates Factor expressions read from the input stream. Typically, you write Factor code in a text editor, load it from the listener by calling " { $link require } ", " { $link reload } " or " { $link run-file } ", and then test it interactively."
 $nl
 "The classical first program can be run in the listener:"
 { $example "\"Hello, world\" print" "Hello, world" }