From c389bfab3bfa3dfe2cd26802247d133862bef7e7 Mon Sep 17 00:00:00 2001 From: Vincent St-Amour Date: Fri, 24 Oct 2014 13:06:59 -0400 Subject: [PATCH] Fix set-symmetric-difference docs. --- pkgs/racket-pkgs/racket-doc/scribblings/reference/sets.scrbl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/racket-pkgs/racket-doc/scribblings/reference/sets.scrbl b/pkgs/racket-pkgs/racket-doc/scribblings/reference/sets.scrbl index 1bb3f22b5a..ddeadb4e62 100644 --- a/pkgs/racket-pkgs/racket-doc/scribblings/reference/sets.scrbl +++ b/pkgs/racket-pkgs/racket-doc/scribblings/reference/sets.scrbl @@ -536,7 +536,7 @@ Supported for any @racket[st] that @impl{implements} @racket[set-remove!] and @s @defproc[(set-symmetric-difference [st0 generic-set?] [st generic-set?] ...) generic-set?]{ Produces a set of the same type as @racket[st0] that includes all of the -elements contained an even number of times in @racket[st0] and the +elements contained an odd number of times in @racket[st0] and the @racket[st]s. If @racket[st0] is a list, each @racket[st] must also be a list. This @@ -560,7 +560,7 @@ Supported for any @racket[st] that @impl{implements} @racket[set-remove] or both @defproc[(set-symmetric-difference! [st0 generic-set?] [st generic-set?] ...) generic-set?]{ Adds and removes elements of @racket[st0] so that it includes all of the -elements contained an even number of times in the @racket[st]s and the +elements contained an odd number of times in the @racket[st]s and the original contents of @racket[st0]. If @racket[st0] is a @tech{hash set}, each @racket[st] must also be a