fix ranges of set-union!, set-intersect!, dict-clear! to be void? in doc

This commit is contained in:
Phil Nguyen 2015-10-14 23:15:59 -04:00 committed by Matthew Flatt
parent e957a7d655
commit 056ec806d5
2 changed files with 3 additions and 3 deletions

View File

@ -625,7 +625,7 @@ Supported for any @racket[dict] that supports @racket[dict-remove],
} }
@defproc[(dict-clear! [dict dict?]) dict?]{ @defproc[(dict-clear! [dict dict?]) void?]{
Removes all of the key/value associations in @racket[dict]. Removes all of the key/value associations in @racket[dict].

View File

@ -449,7 +449,7 @@ Supported for any @racket[st] that @impl{implements} @racket[set-add] and @supp
(set-union (set 1 2) (seteq 2 3)) (code:comment "Sets of different types cannot be unioned.") (set-union (set 1 2) (seteq 2 3)) (code:comment "Sets of different types cannot be unioned.")
]} ]}
@defproc[(set-union! [st0 generic-set?] [st generic-set?] ...) generic-set?]{ @defproc[(set-union! [st0 generic-set?] [st generic-set?] ...) void?]{
Adds the elements from all of the @racket[st]s to @racket[st0]. Adds the elements from all of the @racket[st]s to @racket[st0].
@ -483,7 +483,7 @@ both @racket[set-clear] and @racket[set-add], and @supp{supports} @racket[set->s
} }
@defproc[(set-intersect! [st0 generic-set?] [st generic-set?] ...) generic-set?]{ @defproc[(set-intersect! [st0 generic-set?] [st generic-set?] ...) void?]{
Removes every element from @racket[st0] that is not contained by all of the Removes every element from @racket[st0] that is not contained by all of the
@racket[st]s. @racket[st]s.