From 55be0144dbc3ec359c161679e1cf285ec1e95651 Mon Sep 17 00:00:00 2001 From: Artur Carvalho Date: Sat, 8 Jul 2023 16:52:32 +0200 Subject: [PATCH] Update ch3.md --- manuscript/ch3.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manuscript/ch3.md b/manuscript/ch3.md index bcbf0b10..2789e0bc 100644 --- a/manuscript/ch3.md +++ b/manuscript/ch3.md @@ -377,7 +377,7 @@ function add(x,y) { } ``` -Now imagine we'd like take a list of numbers and add a certain number to each of them. We'll use the `map(..)` utility (see [Chapter 9, "Map"](ch9.md/#map)) built into JS arrays: +Now imagine we'd like to take a list of numbers and add a certain number to each of them. We'll use the `map(..)` utility (see [Chapter 9, "Map"](ch9.md/#map)) built into JS arrays: ```js [1,2,3,4,5].map( function adder(val){