From b47495a9f6b68f6e5b6ea1ac83f8d32f058d0dcd Mon Sep 17 00:00:00 2001 From: Nathan Daniel Peterson Date: Mon, 26 Feb 2018 09:54:14 -0800 Subject: [PATCH] fix minor typo --- manuscript/ch2.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manuscript/ch2.md b/manuscript/ch2.md index 2f815440..ca505e06 100644 --- a/manuscript/ch2.md +++ b/manuscript/ch2.md @@ -485,7 +485,7 @@ f( 2 ); y; // 11 ``` -I know this is a silly example; we could just as easily have `return`d the value instead of setting it into `y` from within the function: +I know this is a silly example; we could just as easily have `return`ed the value instead of setting it into `y` from within the function: ```js function f(x) {