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, ...) }.