Revert "lists: Add list literal doc example."
[factor.git] / core / io / backend / backend-docs.factor
blob8cbd41e02f77f3492bc707d9339a27446e9f64dc
1 USING: help.markup help.syntax io io.backend strings
2 byte-arrays ;
4 HELP: io-multiplex
5 { $values { "nanos" "a non-negative integer" } }
6 { $contract "Waits up to " { $snippet "nanos" } " nanoseconds for pending I/O requests to complete." } ;
8 HELP: init-io
9 { $contract "Initializes the I/O system. Called on startup." } ;
11 HELP: init-stdio
12 { $contract "Initializes the global " { $link input-stream } " and " { $link output-stream } ". Called on startup." } ;