From 1f27fb7848d61f5d42834af3359d4f0cc32c5166 Mon Sep 17 00:00:00 2001 From: John Clements Date: Thu, 20 Feb 2014 12:30:20 -0800 Subject: [PATCH] mcons doc typo fix Closes PR 14345 --- pkgs/racket-pkgs/racket-doc/scribblings/reference/mpairs.scrbl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/racket-pkgs/racket-doc/scribblings/reference/mpairs.scrbl b/pkgs/racket-pkgs/racket-doc/scribblings/reference/mpairs.scrbl index 9858dae941..1fec9f2602 100644 --- a/pkgs/racket-pkgs/racket-doc/scribblings/reference/mpairs.scrbl +++ b/pkgs/racket-pkgs/racket-doc/scribblings/reference/mpairs.scrbl @@ -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 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 element is @racket[a] and second element is @racket[d].}