Make histogram example unchecked since hashtables print differently now that hashcodes are more optimized

db4
Doug Coleman 2011-10-02 22:19:05 -07:00
parent 44ef1d3698
commit f4da6f366c
1 changed files with 1 additions and 1 deletions

View File

@ -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 } }"