]> gitweb.factorcode.org Git - factor.git/blobdiff - basis/io/streams/limited/limited-docs.factor
factor: fix some spacing
[factor.git] / basis / io / streams / limited / limited-docs.factor
index ff55eb991d565c0afd640e6a7527dc2538de7896..6cc6ba8fb7b825326dbdf784aef541b18208d1e2 100644 (file)
@@ -5,15 +5,15 @@ IN: io.streams.limited
 
 HELP: <limited-stream>
 { $values
-     { "stream" "an input stream" } { "limit" integer }
-     { "stream'" "an input stream" }
+    { "stream" "an input stream" } { "limit" integer }
+    { "stream'" "an input stream" }
 }
 { $description "Constructs a new " { $link limited-stream } " from an existing stream. User code should use " { $link limit-stream } " or " { $link limited-input } "." } ;
 
 HELP: limit-stream
 { $values
-     { "stream" "an input stream" } { "limit" integer }
-     { "stream'" "a stream" }
+    { "stream" "an input stream" } { "limit" integer }
+    { "stream'" "a stream" }
 }
 { $description "Changes a decoder's stream to be a limited stream, or wraps " { $snippet "stream" } " in a " { $link limited-stream } "." }
 { $examples