Fix docs for reencode-input-port & reencode-output-port

Closes PR 10545
This commit is contained in:
Asumu Takikawa 2012-08-18 00:34:54 -04:00
parent 7d20e0cbe2
commit 47cb06f842

View File

@ -351,8 +351,8 @@ the peeking port, we end up skipping over the @litchar{456} in the port.
@defproc[(reencode-input-port [in input-port?]
[encoding string?]
[error-bytes (or/c #f bytes?)]
[close? any/c #t]
[error-bytes (or/c #f bytes?) #f]
[close? any/c #f]
[name any/c (object-name in)]
[convert-newlines? any/c #f]
[enc-error (string? input-port? . -> . any)
@ -385,8 +385,8 @@ incomplete encoding sequence.)}
@defproc[(reencode-output-port [out output-port?]
[encoding string?]
[error-bytes (or/c #f bytes?)]
[close? any/c #t]
[error-bytes (or/c #f bytes?) #f]
[close? any/c #f]
[name any/c (object-name out)]
[newline-bytes (or/c #f bytes?) #f]
[enc-error (string? output-port? . -> . any)