]> gitweb.factorcode.org Git - factor.git/commitdiff
syntax: [docs] 'MAIN:' - correct indentation
authorrazetime <raghuallthetime@hotmail.com>
Tue, 13 Dec 2022 07:54:45 +0000 (13:24 +0530)
committerrazetime <raghuallthetime@hotmail.com>
Tue, 13 Dec 2022 07:54:45 +0000 (13:24 +0530)
core/syntax/syntax-docs.factor

index 68766f87b2d8cf63b1917e3474f155a0563eb295..6639784a839b5f6bf12cfe372db2eaf6b84963ba 100644 (file)
@@ -925,9 +925,9 @@ HELP: MAIN:
 { $syntax "MAIN: word" }
 { $values { "word" word } }
 { $description "Defines the main entry point for the current vocabulary and source file. This word will be executed when this vocabulary is passed to " { $link run } " or the source file is run as a script."
-                $nl
-                "If a quotation is passed instead of a word, then it will be run as the main entry point, in the same way." 
-                { $warning "Quotation support in " { $snippet "MAIN:" } " is test functionality. Use it with caution." }
+    $nl
+    "If a quotation is passed instead of a word, then it will be run as the main entry point, in the same way." 
+    { $warning "Quotation support in " { $snippet "MAIN:" } " is test functionality. Use it with caution." }
 } ;
 
 HELP: <PRIVATE