From f4da6f366cef5ddf8cd472c7ac0bd51f4d4861fd Mon Sep 17 00:00:00 2001 From: Doug Coleman Date: Sun, 2 Oct 2011 22:19:05 -0700 Subject: [PATCH] Make histogram example unchecked since hashtables print differently now that hashcodes are more optimized --- basis/math/statistics/statistics-docs.factor | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/basis/math/statistics/statistics-docs.factor b/basis/math/statistics/statistics-docs.factor index 4eaf022237..e17d046852 100644 --- a/basis/math/statistics/statistics-docs.factor +++ b/basis/math/statistics/statistics-docs.factor @@ -93,7 +93,7 @@ HELP: histogram-by } { $description "Returns a hashtable where the keys are the elements of the sequence binned by being passed through " { $snippet "quot" } ", and the values are the number of times members of each bin appeared in that sequence." } { $examples - { $example "! Count the number of times letters and non-letters appear in a sequence." + { $unchecked-example "! Count the number of times letters and non-letters appear in a sequence." "USING: prettyprint math.statistics unicode.categories ;" "\"aaa123bc\" [ letter? ] histogram-by ." "H{ { t 5 } { f 3 } }"