]> gitweb.factorcode.org Git - factor.git/commitdiff
continuations, io.binary: add whitespace between '"' and '{ $snippet' in the document...
authorKeita Haga <keitahaga@mail.com>
Sat, 8 Jan 2011 13:26:06 +0000 (22:26 +0900)
committerKeita Haga <keitahaga@mail.com>
Sat, 8 Jan 2011 13:26:06 +0000 (22:26 +0900)
core/continuations/continuations-docs.factor
core/io/binary/binary-docs.factor

index dfecf75f90a5d35d1cea19dde5d7e174f7a70d73..300c9c63bc84da51c0f0f7ce2891b05b7c187857 100644 (file)
@@ -131,7 +131,7 @@ HELP: >continuation<
 
 HELP: ifcc
 { $values { "capture" { $quotation "( continuation -- )" } } { "restore" quotation } }
-{ $description "Reifies a continuation from the point immediately after which this word returns, and passes it to " { $snippet "capture" } ". When the continuation is restored, execution resumes and "{ $snippet "restore" } " is called." } ;
+{ $description "Reifies a continuation from the point immediately after which this word returns, and passes it to " { $snippet "capture" } ". When the continuation is restored, execution resumes and " { $snippet "restore" } " is called." } ;
 
 { callcc0 continue callcc1 continue-with ifcc } related-words
 
index 1339cc6090f23dbad541008787e99a23b6422105..443de70132046645ac5b6030c549ab78274e83c3 100644 (file)
@@ -6,7 +6,7 @@ ARTICLE: "stream-binary" "Working with binary data"
 $nl
 "There are two ways to order the bytes making up an integer; " { $emphasis "little endian" } " byte order outputs the least significant byte first, and the most significant byte last, whereas " { $emphasis "big endian" } " is the other way around."
 $nl
-"Consider the hexadecimal integer "{ $snippet "HEX: cafebabe" } ". Little endian byte order yields the following sequence of bytes:"
+"Consider the hexadecimal integer " { $snippet "HEX: cafebabe" } ". Little endian byte order yields the following sequence of bytes:"
 { $table
     { "Byte:" "1" "2" "3" "4" }
     { "Value:" { $snippet "be" } { $snippet "ba" } { $snippet "fe" } { $snippet "ca" } }