From fcb6e76fc665e196b97c8b1dcdedd6f0d71aca16 Mon Sep 17 00:00:00 2001 From: Christoph Michael Becker Date: Wed, 2 Sep 2020 16:31:49 +0000 Subject: [PATCH] Minor improvements to array_map() docs Patch contributed by Larry Garfield. git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@350490 c90b9560-bf6c-de11-be94-00142212c4b1 --- reference/array/functions/array-map.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reference/array/functions/array-map.xml b/reference/array/functions/array-map.xml index 0e86d8910d..be08afeffc 100644 --- a/reference/array/functions/array-map.xml +++ b/reference/array/functions/array-map.xml @@ -17,7 +17,7 @@ array_map returns an &array; containing the results of applying the callback - function to the corresponding index of array1 + to the corresponding index of array1 (and ... if more arrays are provided) used as arguments for the callback. The number of parameters that the callback @@ -34,7 +34,7 @@ callback - Callback function to run for each element in each array. + A callable to run for each element in each array. &null; can be passed as a value to callback