Doc fixes.

One is from Eric Hanchrow.
This commit is contained in:
Vincent St-Amour 2012-04-30 14:13:32 -04:00
parent eee60c7d47
commit cda496d4ed
2 changed files with 4 additions and 4 deletions

View File

@ -283,7 +283,7 @@ To plot histograms side-by-side, pass the appropriate @(racket #:x-min) value to
#:color 2 #:line-color 2 #:color 2 #:line-color 2
#:label "Numbers per number")))] #:label "Numbers per number")))]
Using the @racket[#:gap] argument, a discrete hisogram can be used to show Using the @racket[#:skip] argument, a discrete histogram can be used to show
benchmark results where each configuration has a specific color, but benchmark results where each configuration has a specific color, but
the runs on a specific benchmark are grouped together. For example, the runs on a specific benchmark are grouped together. For example,

View File

@ -27,8 +27,8 @@ unpredictable when keys are mutated.
@defproc[(seteq [v any/c] ...) set?] @defproc[(seteq [v any/c] ...) set?]
)]{ )]{
Creates a set that uses @racket[equal?], @racket[eq?], or Creates a set that uses @racket[equal?], @racket[eqv?], or
@racket[eqv?], respectively, to compare elements. The given @racket[eq?], respectively, to compare elements. The given
@racket[v]s are added to the set. The elements are added in the order @racket[v]s are added to the set. The elements are added in the order
that they appear as @racket[v]s, so in the first two cases, an earlier that they appear as @racket[v]s, so in the first two cases, an earlier
element that is @racket[equal?] or @racket[eqv?] but not @racket[eq?] element that is @racket[equal?] or @racket[eqv?] but not @racket[eq?]