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,11 +283,11 @@ To plot histograms side-by-side, pass the appropriate @(racket #:x-min) value to
#:color 2 #:line-color 2
#: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
the runs on a specific benchmark are grouped together. For example,
@interaction[#:eval
@interaction[#:eval
plot-eval
(parameterize ([discrete-histogram-gap 1/32])
(plot (list (discrete-histogram '(#(aa 1.5) #(ab 2.5) #(ac 3.5))

View File

@ -27,8 +27,8 @@ unpredictable when keys are mutated.
@defproc[(seteq [v any/c] ...) set?]
)]{
Creates a set that uses @racket[equal?], @racket[eq?], or
@racket[eqv?], respectively, to compare elements. The given
Creates a set that uses @racket[equal?], @racket[eqv?], or
@racket[eq?], respectively, to compare elements. The given
@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
element that is @racket[equal?] or @racket[eqv?] but not @racket[eq?]