diff --git a/collects/scribblings/scribble/core.scrbl b/collects/scribblings/scribble/core.scrbl index 4a2a49b8..1bbb1393 100644 --- a/collects/scribblings/scribble/core.scrbl +++ b/collects/scribblings/scribble/core.scrbl @@ -1015,7 +1015,7 @@ whether the resulting information originated from an external source (i.e., a different document).} -@defproc[(resolve-search [dep-key any/c][p (or/c part? false/c)] [ri resolve-info?] [key info-key?]) +@defproc[(resolve-search [dep-key any/c] [p (or/c part? false/c)] [ri resolve-info?] [key info-key?]) void?]{ Like @racket[resolve-get], but a shared @racket[dep-key] groups diff --git a/collects/scribblings/scribble/struct.scrbl b/collects/scribblings/scribble/struct.scrbl index 8ce08ad8..1fc67631 100644 --- a/collects/scribblings/scribble/struct.scrbl +++ b/collects/scribblings/scribble/struct.scrbl @@ -118,7 +118,7 @@ coerced to one. @deftogether[( -@defproc[(make-styled-paragraph [content list?][style any/c]) paragraph?] +@defproc[(make-styled-paragraph [content list?] [style any/c]) paragraph?] @defproc[(styled-paragraph? [v any/c]) boolean?] @defproc[(styled-paragraph-style [p paragraph?]) style?] )]{ @@ -171,7 +171,7 @@ is an alias for @racket[itemization?], and @racket[styled-itemization-style] is an alias for @racket[itemization-style].} -@defproc[(make-blockquote [style any/c][blocks (listof block?)]) +@defproc[(make-blockquote [style any/c] [blocks (listof block?)]) nested-flow?]{ @compat[] Like @racket[make-nested-flow], but @racket[style] is @@ -199,14 +199,14 @@ formats to the current one.} @deftogether[( @defproc[(make-element [style any/c] [content list?]) element?] -@defproc[(make-toc-element [style any/c] [content list?][toc-content list?]) toc-element?] -@defproc[(make-target-element [style any/c] [content list?][tag tag?]) target-element?] -@defproc[(make-toc-target-element [style any/c] [content list?][tag tag?]) toc-target-element?] -@defproc[(make-page-target-element [style any/c] [content list?][tag tag?]) page-target-element?] -@defproc[(make-redirect-target-element [style any/c] [content list?][tag tag?] +@defproc[(make-toc-element [style any/c] [content list?] [toc-content list?]) toc-element?] +@defproc[(make-target-element [style any/c] [content list?] [tag tag?]) target-element?] +@defproc[(make-toc-target-element [style any/c] [content list?] [tag tag?]) toc-target-element?] +@defproc[(make-page-target-element [style any/c] [content list?] [tag tag?]) page-target-element?] +@defproc[(make-redirect-target-element [style any/c] [content list?] [tag tag?] [alt-path path-string?] [alt-anchor string?]) redirect-target-element?] -@defproc[(make-link-element [style any/c] [content list?][tag tag?]) link-element?] -@defproc[(make-index-element [style any/c] [content list?][tag tag?] +@defproc[(make-link-element [style any/c] [content list?] [tag tag?]) link-element?] +@defproc[(make-index-element [style any/c] [content list?] [tag tag?] [tag tag?] [plain-seq (and/c pair? (listof string?))] [entry-seq list?] [desc any/c]) index-element?] )]{