minor doc fix (optional args last)

This commit is contained in:
Ryan Culpepper 2011-05-11 01:42:14 -06:00
parent 8492f7c90b
commit dc0138bcb7
2 changed files with 6 additions and 6 deletions

View File

@ -16,11 +16,11 @@
@section{Creating formatted identifiers}
@defproc[(format-id [lctx (or/c syntax? #f)]
[fmt string?]
[v (or/c string? symbol? identifier? keyword? char? number?)] ...
[#:source src (or/c syntax? #f) #f]
[#:props props (or/c syntax? #f) #f]
[#:cert cert (or/c syntax? #f) #f]
[fmt string?]
[v (or/c string? symbol? identifier? keyword? char? number?)] ...)
[#:cert cert (or/c syntax? #f) #f])
identifier?]{
Like @racket[format], but produces an identifier using @racket[lctx]

View File

@ -22,11 +22,11 @@
@margin-note{This binding was added by Vincent St-Amour.}
@defproc[(format-unique-id [lctx (or/c syntax? #f)]
[fmt string?]
[v (or/c string? symbol? identifier? keyword? char? number?)] ...
[#:source src (or/c syntax? #f) #f]
[#:props props (or/c syntax? #f) #f]
[#:cert cert (or/c syntax? #f) #f]
[fmt string?]
[v (or/c string? symbol? identifier? keyword? char? number?)] ...)
[#:cert cert (or/c syntax? #f) #f])
identifier?]{
Like @racket[format-id], but returned identifiers are guaranteed to be unique.
}