bkyk8rc3zvpnsf5inmcqq4n3k98cv6hj-my-site-hyper-literate-git.test.suzanne.soy-0.0.1

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit 08460c18df43b5015dbbe0e3803e722b67423532
parent b0828c2bbf6e3a94ec502f46f4898dc12af6c038
Author: Matthew Flatt <mflatt@racket-lang.org>
Date:   Sun,  2 Aug 2009 13:36:25 +0000

fix some contracts

svn: r15661

original commit: f1af318776ea05ca7de85246852848b87f5f84c4

Diffstat:
Mcollects/scribble/base.ss | 6+++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/collects/scribble/base.ss b/collects/scribble/base.ss @@ -441,17 +441,17 @@ element?)] [secref (->* (string?) (#:doc module-path? - #:tag-prefixes (or/c #f (listof string)) + #:tag-prefixes (or/c #f (listof string?)) #:underline? any/c) element?)] [Secref (->* (string?) (#:doc module-path? - #:tag-prefixes (or/c #f (listof string)) + #:tag-prefixes (or/c #f (listof string?)) #:underline? any/c) element?)] [seclink (->* (string?) (#:doc module-path? - #:tag-prefixes (or/c #f (listof string)) + #:tag-prefixes (or/c #f (listof string?)) #:underline? any/c) #:rest (listof pre-content?) element?)]