]> gitweb.factorcode.org Git - factor.git/commitdiff
Fix some English spelling: outputted -> output
authorAlexander Ilin <alex.ilin@protonmail.com>
Mon, 17 Jul 2023 16:23:50 +0000 (18:23 +0200)
committerJohn Benediktsson <mrjbq7@gmail.com>
Thu, 20 Jul 2023 02:37:29 +0000 (19:37 -0700)
Same for "inputted".

basis/compiler/cfg/builder/builder-docs.factor
basis/compiler/codegen/codegen-docs.factor
basis/compiler/tree/propagation/known-words/known-words.factor
basis/stack-checker/known-words/known-words-docs.factor
basis/stack-checker/visitor/visitor-docs.factor
core/parser/parser-docs.factor
extra/yaml/yaml-docs.factor

index 543a87f3cc60f9b098f09955e245ca75d205ae7e..924dab00469a6267f304d032b761de07d78a18a4 100644 (file)
@@ -141,7 +141,7 @@ ARTICLE: "compiler.cfg.builder"
 "Final stage of compilation generates machine code from dataflow IR"
 "The compiler first builds an SSA IR tree of the word to be compiled (see " { $vocab-link "compiler.tree.builder" } ") then this vocab converts it to a CFG IR tree. The result is not in SSA form; this is constructed later by calling compiler.cfg.ssa.construction:construct-ssa."
 $nl
-"Each tree node type has its own implementation of the " { $link emit-node } " generic. In that word, cfg instructions (tuples prefixed with ##) are outputted to basic blocks and the cfg constructed."
+"Each tree node type has its own implementation of the " { $link emit-node } " generic. In that word, cfg instructions (tuples prefixed with ##) are output to basic blocks and the cfg constructed."
 $nl
 "Main word:"
 { $subsections
index f2815191af7e82858257d1e985a26cd44339c7ad..5f459068509b1c7c3ecb988b668a0ca8bf24805c 100644 (file)
@@ -110,7 +110,7 @@ HELP: with-fixup
   { "quot" quotation }
   { "code" sequence }
 }
-{ $description "Runs the quotation to emit compiled code. The output is a six-tuple with the same format as the one outputted by " { $link generate } "." } ;
+{ $description "Runs the quotation to emit compiled code. The output is a six-tuple with the same format as the one output by " { $link generate } "." } ;
 
 ARTICLE: "compiler.codegen" "Code generation from MR (machine representation)"
 "Code generators for cfg instructions."
index abfe874c35f7039304be376b16b4d8ac6b68bbbd..4c9eb00fc89dd9bbe2145a19bb7dba76defe0cc3 100644 (file)
@@ -260,7 +260,7 @@ generic-comparison-ops [
     '[ _ swap interval>> <class/interval-info> ] "outputs" set-word-prop
 ] assoc-each
 
-! For these we limit the outputted interval
+! For these we limit the output interval
 {
     { fixnum>bignum bignum }
     { fixnum>float float }
index cfa16aa40810d2ca36ccb5be90e7bac8c02c7de2..557571f3384abdb4b0137456434352e64179942b 100644 (file)
@@ -4,7 +4,7 @@ IN: stack-checker.known-words
 
 HELP: check-declaration
 { $values { "declaration" sequence } }
-{ $description "Checks that a declaration sequence as inputted to a " { $link declare } " word is well-formed." } ;
+{ $description "Checks that a declaration sequence as input to a " { $link declare } " word is well-formed." } ;
 
 HELP: infer-call
 { $description "Performs inferencing for the " { $link call } " word." } ;
index 68a5a33c8fc894421c2502179283e079f835f13d..ec71dfb85d26a22007032f190dd0ea6832b13e82 100644 (file)
@@ -7,7 +7,7 @@ HELP: stack-visitor
 
 HELP: #>r,
 { $values { "inputs" sequence } { "outputs" sequence } }
-{ $description "Emits a " { $link #shuffle } " node that copies values from the data stack to the retain stack. This node is primarily outputted by the " { $link dip } " word and its relatives." }
+{ $description "Emits a " { $link #shuffle } " node that copies values from the data stack to the retain stack. This node is primarily output by the " { $link dip } " word and its relatives." }
 { $examples
   { $example
     "USING: namespaces prettyprint stack-checker.visitor ;"
index 758a6c1e3496b90ed186756ea9f6c6872af5107c..ddb74251d717db5d77012358758cce4c8c52b84c 100644 (file)
@@ -233,7 +233,7 @@ $parsing-note ;
 
 HELP: parse-array-def
 { $values { "array" "a new " { $link array } } }
-{ $description "Like " { $link parse-definition } ", except the parsed sequence it outputted as an array." }
+{ $description "Like " { $link parse-definition } ", except the parsed sequence is output as an array." }
 $parsing-note ;
 
 HELP: bootstrap-syntax
index 9b473b909c734f096cf289a2dc6ac150ac9ff749..2a19c738d483b1f80fb0d4c86b8d047ee1c168f3 100644 (file)
@@ -17,7 +17,7 @@ HELP: >yaml-docs
     { "seq" sequence }
     { "str" string }
 }
-{ $description "Serializes the sequence into a YAML formatted string. Each element is outputted as a YAML document." } ;
+{ $description "Serializes the sequence into a YAML formatted string. Each element is output as a YAML document." } ;
 
 HELP: yaml-docs>
 { $values