Fix up documentation on count. Count is more similar to filter-map than it is to filter since it can accept multiple lists.

This commit is contained in:
Mark Lee 2015-05-03 12:55:11 -04:00 committed by Sam Tobin-Hochstadt
parent b450aa8af6
commit e4a48723b3

View File

@ -1084,7 +1084,7 @@ building the intermediate list.
@defproc[(count [proc procedure?] [lst list?] ...+)
exact-nonnegative-integer?]{
Returns @racket[(length (filter proc lst ...))], but without building
Returns @racket[(length (filter-map proc lst ...))], but without building
the intermediate list.
@mz-examples[#:eval list-eval