mcons doc typo fix

Closes PR 14345
This commit is contained in:
John Clements 2014-02-20 12:30:20 -08:00
parent 745c6532d1
commit 1f27fb7848

View File

@ -28,7 +28,7 @@ of the sequence. See also @racket[in-mlist].
@defproc[(mpair? [v any/c]) boolean?]{Returns @racket[#t] if @racket[v] is @defproc[(mpair? [v any/c]) boolean?]{Returns @racket[#t] if @racket[v] is
a @tech{mutable pair}, @racket[#f] otherwise.} a @tech{mutable pair}, @racket[#f] otherwise.}
@defproc[(mcons [a any/c] [d any/c]) pair?]{Returns a newly allocated @defproc[(mcons [a any/c] [d any/c]) mpair?]{Returns a newly allocated
@tech{mutable pair} whose first @tech{mutable pair} whose first
element is @racket[a] and second element is @racket[d].} element is @racket[a] and second element is @racket[d].}