Skip to content

Commit

Permalink
update io-copy! docs
Browse files Browse the repository at this point in the history
  • Loading branch information
vyzo committed Sep 5, 2023
1 parent 95656a4 commit fe1940a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions doc/reference/stdio.md
Original file line number Diff line number Diff line change
Expand Up @@ -1224,12 +1224,12 @@ Creates a delimited string reader that can read up to `limit` chars from `reader
### io-copy!
```scheme
(io-copy! reader writer (buffer-or-size default-buffer-size)) -> fixnum
reader := Reader
writer := Writer
buffer-or-size := fixnum or u8vector
reader := Reader or StringReader
writer := Writer or StringWriter, symmetric to reader
buffer-or-size := #f, fixnum or buffer (u8vector or string)
```

Copies from a Reader to a Writer.
Copies from a reader to a writer.
Returns the number of bytes copied.

## A Note on thread-safety
Expand Down

0 comments on commit fe1940a

Please sign in to comment.