fix docs of make-custom-set-types

Notice that the vales returned by make-custom-hash-types have a
different order.

Thanks to Jos Koot for the report.
This commit is contained in:
Gustavo Massaccesi 2018-06-20 19:39:26 -03:00
parent 6d775e5c5c
commit 76c30df8e6

View File

@ -932,15 +932,15 @@ Produces seven values:
@itemize[ @itemize[
@item{a predicate recognizing all instances of the new set type,} @item{a predicate recognizing all instances of the new set type,}
@item{a predicate recognizing immutable instances,}
@item{a predicate recognizing mutable instances,}
@item{a predicate recognizing weak instances,} @item{a predicate recognizing weak instances,}
@item{a constructor for immutable instances,} @item{a predicate recognizing mutable instances,}
@item{a predicate recognizing immutable instances,}
@item{a constructor for weak instances,}
@item{a constructor for mutable instances, and} @item{a constructor for mutable instances, and}
@item{a constructor for weak instances.} @item{a constructor for immutable instances.}
] ]
See @racket[define-custom-hash-types] for an example. See @racket[define-custom-set-types] for an example.
} }