]> gitweb.factorcode.org Git - factor.git/commitdiff
multiline: fix typo in docs
authorKeita Haga <keitahaga@mail.com>
Wed, 22 Dec 2010 19:42:56 +0000 (04:42 +0900)
committerKeita Haga <keitahaga@mail.com>
Wed, 22 Dec 2010 19:42:56 +0000 (04:42 +0900)
basis/multiline/multiline-docs.factor

index 9e7c28e89f43fd1c9c5fec54c370413b3f1b1912..09f86197ba5f5c3cb2e00949941c755b9b670352 100644 (file)
@@ -17,7 +17,7 @@ HELP: /*
 HELP: HEREDOC:
 { $syntax "HEREDOC: marker\n...text...\nmarker" }
 { $values { "marker" "a word (token)" } { "text" "arbitrary text" } { "value" string } }
-{ $description "Returns a string delimited by an arbitrary user-defined token. This delimiter must be exactly the text beginning at the first non-blank character after " { $link POSTPONE: HEREDOC: } " until the end of the line containing " { $link POSTPONE: HEREDOC: } ". Text is captured until a line is found conatining exactly this delimter string." }
+{ $description "Returns a string delimited by an arbitrary user-defined token. This delimiter must be exactly the text beginning at the first non-blank character after " { $link POSTPONE: HEREDOC: } " until the end of the line containing " { $link POSTPONE: HEREDOC: } ". Text is captured until a line is found containing exactly this delimiter string." }
 { $warning "Whitespace is significant." }
 { $examples
     { $example "USING: multiline prettyprint ;"