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) {