From c08589a5bd0228f4f0bb1747679d969f411db77d Mon Sep 17 00:00:00 2001 From: danielsbird Date: Wed, 28 Feb 2018 19:41:29 -0500 Subject: [PATCH] Fix typo in chapter 9 --- manuscript/ch9.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manuscript/ch9.md b/manuscript/ch9.md index c5008ea6..57e986e7 100644 --- a/manuscript/ch9.md +++ b/manuscript/ch9.md @@ -52,7 +52,7 @@ x = x * 3; If we define a function for this multiplying by `3`, that function acts as a mapping (transformer) function: ```js -var multipleBy3 = v => v * 3; +var multiplyBy3 = v => v * 3; var x = 2, y;