Fix documented name of unsafe-cons-list

This commit is contained in:
Asumu Takikawa 2012-12-13 18:25:29 -05:00
parent 57268c2fc9
commit 0c11601fdf

View File

@ -192,7 +192,7 @@ Unsafe variants of @racket[car], @racket[cdr], @racket[mcar],
@racket[mcdr], @racket[set-mcar!], and @racket[set-mcdr!].}
@defproc[(unsafe-cons [v any/c] [rest list?]) (and/c pair? list?)]{
@defproc[(unsafe-cons-list [v any/c] [rest list?]) (and/c pair? list?)]{
Unsafe variant of @racket[cons] that produces a pair that claims to be
a list---without checking whether @racket[rest] is a list.}