typo: 'any/v' -> 'any/c'

This commit is contained in:
Ben Greenman 2019-05-25 20:17:01 -04:00
parent 870536e698
commit f70b776831

View File

@ -39,13 +39,13 @@ element is @racket[a] and second element is @racket[d].}
@tech{mutable pair} @racket[p].} @tech{mutable pair} @racket[p].}
@defproc[(set-mcar! [p mpair?] [v any/v]) @defproc[(set-mcar! [p mpair?] [v any/c])
void?]{ void?]{
Changes the @tech{mutable pair} @racket[p] so that its first element is Changes the @tech{mutable pair} @racket[p] so that its first element is
@racket[v].} @racket[v].}
@defproc[(set-mcdr! [p mpair?] [v any/v]) @defproc[(set-mcdr! [p mpair?] [v any/c])
void?]{ void?]{
Changes the @tech{mutable pair} @racket[p] so that its second element is Changes the @tech{mutable pair} @racket[p] so that its second element is