]> gitweb.factorcode.org Git - factor.git/commitdiff
help.cookbook: the space between "#!" and *interpreter* could be remove, since "...
authorRoc King <ownwaterloo@gmail.com>
Sat, 2 Nov 2013 06:34:38 +0000 (14:34 +0800)
committerJohn Benediktsson <mrjbq7@gmail.com>
Mon, 4 Nov 2013 04:12:28 +0000 (20:12 -0800)
basis/help/cookbook/cookbook.factor

index a10d49f6f7b9515910d67d4a156c8819f35f2139..f7a6133d976968fef042b805d50542b2029e2353 100644 (file)
@@ -239,10 +239,8 @@ command-line get [
 "Now, the " { $snippet "grep.factor" } " script will start up much faster. See " { $link "images" } " for details."
 { $heading "Executable scripts" }
 "It is also possible to make executable scripts. A Factor file can begin with a comment like the following:"
-{ $code "#! /usr/bin/env factor" }
+{ $code "#!/usr/bin/env factor" }
 "If the text file is made executable, then it can be run, assuming the " { $snippet "factor" } " binary is in your " { $snippet "$PATH" } "."
-$nl
-"The space between " { $snippet "#!" } " and " { $snippet "/usr/bin/env" } " is necessary, since " { $link POSTPONE: #! } " is a parsing word, and a syntax error would otherwise result."
 { $references
     { }
     "command-line"