From c60b93e35a042e269ae47f3da0c3040527a0eaaa Mon Sep 17 00:00:00 2001 From: Brett Cannon Date: Wed, 13 Mar 2024 18:10:03 -0700 Subject: Try to clarify what "any number of arguments" means in the "function capture" page Closes #53 --- src/content/chapter1_functions/lesson05_function_captures/en.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src') diff --git a/src/content/chapter1_functions/lesson05_function_captures/en.html b/src/content/chapter1_functions/lesson05_function_captures/en.html index 1b60f51..4c86e27 100644 --- a/src/content/chapter1_functions/lesson05_function_captures/en.html +++ b/src/content/chapter1_functions/lesson05_function_captures/en.html @@ -6,7 +6,7 @@

The anonymous function fn(a) { some_function(..., a, ...) } can be written as some_function(..., _, ...), with any number of - other arguments passed to the inner function. The underscore _ is - a placeholder for the argument, equivalent to a in - fn(a) { some_function(..., a, ...) }. + other arguments passed directly to the inner function. The underscore + _ is a placeholder for the argument, equivalent to + a in fn(a) { some_function(..., a, ...) }.

-- cgit v1.2.3