From aea5d60c6c3d164f354c41a22bda59ae09d3b2b4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=96zg=C3=BCr=20Y=C4=B1ld=C4=B1r=C4=B1m?= <67658548+oezg@users.noreply.github.com> Date: Wed, 7 Aug 2024 14:06:26 +0200 Subject: [PATCH] It said element rather than sequence. --- concepts/reducing/about.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/concepts/reducing/about.md b/concepts/reducing/about.md index 903e36bf..34b88e6e 100644 --- a/concepts/reducing/about.md +++ b/concepts/reducing/about.md @@ -26,7 +26,7 @@ The `:initial-value` argument is not mandatory and `reduce` acts differently dep 1. If the initial-value is not provided and the sequence has more than one element then the first time the function is called it is called with the first two elements of the sequence. 2. If the initial-value is not provided and the sequence has one element then the form evaluates to that element and the function is not called. -3. If the initial-value is provided and the element is empty then the form evaluates to the initial value and the function is not called. +3. If the initial-value is provided and the sequence is empty then the form evaluates to the initial value and the function is not called. 4. If the initial-value is not provided and the sequence is empty then the function is called with *zero* arguments. The last case is one that can trip people up.