From cda496d4edf1ceb7c9ddc5353948838bbed26ce1 Mon Sep 17 00:00:00 2001 From: Vincent St-Amour Date: Mon, 30 Apr 2012 14:13:32 -0400 Subject: [PATCH] Doc fixes. One is from Eric Hanchrow. --- collects/plot/scribblings/renderer2d.scrbl | 4 ++-- collects/scribblings/reference/sets.scrbl | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/collects/plot/scribblings/renderer2d.scrbl b/collects/plot/scribblings/renderer2d.scrbl index 99aa8c24ec..5f4be21773 100644 --- a/collects/plot/scribblings/renderer2d.scrbl +++ b/collects/plot/scribblings/renderer2d.scrbl @@ -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)) diff --git a/collects/scribblings/reference/sets.scrbl b/collects/scribblings/reference/sets.scrbl index d9ea0c639b..44cc41d0c1 100644 --- a/collects/scribblings/reference/sets.scrbl +++ b/collects/scribblings/reference/sets.scrbl @@ -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?]