From 5dd8921e9263f46071059ab59eb6f9c9cbe7156e Mon Sep 17 00:00:00 2001 From: othercorey Date: Tue, 25 Nov 2025 05:34:58 -0600 Subject: [PATCH] Fix spacing in documentation for unfold() usage --- en/core-libraries/collections.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/en/core-libraries/collections.rst b/en/core-libraries/collections.rst index f92e4d48df..25a6530399 100644 --- a/en/core-libraries/collections.rst +++ b/en/core-libraries/collections.rst @@ -265,7 +265,7 @@ data from paginated services:: $allPagesItems = $items->toList(); -You can use the ``yield`` keyword inside ``unfold()``to return as +You can use the ``yield`` keyword inside ``unfold()`` to return as many elements for each item in the collection as you may need:: $oddNumbers = [1, 3, 5, 7];