]> gitweb.factorcode.org Git - factor.git/commitdiff
help.cookbook: remove the dash for easier reading.
authorJohn Benediktsson <mrjbq7@gmail.com>
Mon, 17 May 2021 16:31:55 +0000 (09:31 -0700)
committerJohn Benediktsson <mrjbq7@gmail.com>
Mon, 17 May 2021 16:31:55 +0000 (09:31 -0700)
basis/help/cookbook/cookbook.factor

index 20c161647eff01faf4d2a14518e7d1e1af496926..b6e3c74a444cc924a3b8191c0675902943584f47 100644 (file)
@@ -18,10 +18,10 @@ $nl
 { $table
     { { $strong "Action" } { $strong "Stack contents" } }
     { "10 is pushed on the stack." { $snippet "10" } }
-    { { "The " { $link sq } " word is executed. It pops one input from the stack - the integer 10 - and squares it, pushing the result." } { $snippet "100" } }
+    { { "The " { $link sq } " word is executed. It pops one input from the stack (the integer 10) and squares it, pushing the result." } { $snippet "100" } }
     { { "5 is pushed on the stack." } { $snippet "100 5" } }
-    { { "The " { $link - } " word is executed. It pops two inputs from the stack - the integers 100 and 5 - and subtracts 5 from 100, pushing the result." } { $snippet "95" } }
-    { { "The " { $link . } " word is executed. It pops one input from the stack - the integer 95 - and prints it in the listener's output area." } { } }
+    { { "The " { $link - } " word is executed. It pops two inputs from the stack (the integers 100 and 5) and subtracts 5 from 100, pushing the result." } { $snippet "95" } }
+    { { "The " { $link . } " word is executed. It pops one input from the stack (the integer 95) and prints it in the listener's output area." } { } }
 }
 "Factor supports many other data types:"
 { $code