commit 0ffb9f2b480ed320bc1fcbf62f59136b7cf15c3d
parent 5218126773855c9c7e7d8d0b3076221e670c01ea
Author: Matthew Flatt <mflatt@racket-lang.org>
Date: Wed, 26 Oct 2011 06:37:59 -0600
fix contract
original commit: 932ef94cb3172fab489b2543a9efa9e613727188
Diffstat:
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/collects/scribble/render.rkt b/collects/scribble/render.rkt
@@ -21,7 +21,7 @@
#:redirect (or/c #f string?)
#:redirect-main (or/c #f string?)
#:xrefs (listof xref?)
- #:info-in-files (listof path?)
+ #:info-in-files (listof path-string?)
#:info-out-file (or/c #f path-string?)
#:quiet? any/c)
. ->* . void?)])
diff --git a/collects/scribblings/scribble/renderer.scrbl b/collects/scribblings/scribble/renderer.scrbl
@@ -48,7 +48,7 @@ function to render a document.
[#:style-extra-files style-extra-files (listof path-string?) #f]
[#:extra-files extra-files (listof path-string?) #f]
[#:xrefs xrefs (listof xref?) null]
- [#:info-in-files info-in-files (listof path?) null]
+ [#:info-in-files info-in-files (listof path-string?) null]
[#:info-out-file info-out-file (or/c #f path-string?) #f]
[#:redirect redirect (or/c #f string?) #f]
[#:redirect-main redirect-main (or/c #f string?) #f]