Skip to content

Commit 5120dcd

Browse files
etripiermarijnh
authored andcommitted
Fix minor typo in 03_functions
Fixes inconsistent verb tense use on line 363 of 03_functions. Before: In one case, `console.log` [had] to jump back to the `greet` function. In the other case, it jumps back to the end of the program. After: In one case, `console.log` [has] to jump back to the `greet` function. In the other case, it jumps back to the end of the program. Use of "has" is consistent with the rest of the paragraph, which is written in present tense.
1 parent 67e1f23 commit 5120dcd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

03_functions.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -360,7 +360,7 @@ top
360360
(((return keyword)))(((memory)))Because a function has to jump back to
361361
the place of the call when it returns, the computer must remember the
362362
context from which the function was called. In one case, `console.log`
363-
had to jump back to the `greet` function. In the other case, it jumps
363+
has to jump back to the `greet` function. In the other case, it jumps
364364
back to the end of the program.
365365

366366
The place where the computer stores this context is the _((call

0 commit comments

Comments
 (0)