]> gitweb.factorcode.org Git - factor.git/blobdiff - core/io/streams/c/c-docs.factor
Fixing assorted compile errors and help lint warnings
[factor.git] / core / io / streams / c / c-docs.factor
index 09dcb31458c11f95a11e0fba72da697b04d63952..41cc878c7977ba88be9c4fde352ecb7e3d3229d2 100644 (file)
@@ -21,12 +21,12 @@ ARTICLE: "io.streams.c" "ANSI C streams"
 ABOUT: "io.streams.c"
 
 HELP: <c-reader>
-{ $values { "in" "a C FILE* handle" } { "stream" "a new stream" } }
+{ $values { "handle" "a C FILE* handle" } { "stream" "a new stream" } }
 { $description "Creates a stream which reads data by calling C standard library functions." }
 { $notes "Usually C streams are only used during bootstrap, and non-blocking OS-specific I/O routines are used during normal operation." } ;
 
 HELP: <c-writer>
-{ $values { "out" "a C FILE* handle" } { "stream" "a new stream" } }
+{ $values { "handle" "a C FILE* handle" } { "stream" "a new stream" } }
 { $description "Creates a stream which writes data by calling C standard library functions." }
 { $notes "Usually C streams are only used during bootstrap, and non-blocking OS-specific I/O routines are used during normal operation." } ;