From b978631823cc3588309463d888a83a4490aab40c Mon Sep 17 00:00:00 2001 From: James Bornholt Date: Mon, 6 Mar 2017 15:44:42 -0800 Subject: [PATCH] Clarify order of arguments for stream-fold (#1578) --- pkgs/racket-doc/scribblings/reference/sequences.scrbl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/racket-doc/scribblings/reference/sequences.scrbl b/pkgs/racket-doc/scribblings/reference/sequences.scrbl index 17d56551f0..afd0cb6fa2 100644 --- a/pkgs/racket-doc/scribblings/reference/sequences.scrbl +++ b/pkgs/racket-doc/scribblings/reference/sequences.scrbl @@ -1088,7 +1088,8 @@ stream, but plain lists can be used as streams, and functions such as any/c]{ Folds @racket[f] over each element of @racket[s] with @racket[i] as the initial accumulator. If @racket[s] is infinite, this function - does not terminate. + does not terminate. The @racket[f] function takes the accumulator as + its first argument and the next stream element as its second. } @defproc[(stream-count [f procedure?] [s stream?])