Skip to content

Commit 8def452

Browse files
authored
docs: Fix tense (#6995)
Fix tense fix the tense from 'executed' to 'executing' Signed-off-by: Kenny <[email protected]>
1 parent 9af1dcb commit 8def452

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/site/pages/en/learn/command-line/how-to-use-the-nodejs-repl.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ false
5353
>
5454
```
5555

56-
Note the difference in the outputs of the above two lines. The Node REPL printed `undefined` after executed `console.log()`, while on the other hand, it just printed the result of `5 === '5'`. You need to keep in mind that the former is just a statement in JavaScript, and the latter is an expression.
56+
Note the difference in the outputs of the above two lines. The Node REPL printed `undefined` after executing `console.log()`, while on the other hand, it just printed the result of `5 === '5'`. You need to keep in mind that the former is just a statement in JavaScript, and the latter is an expression.
5757

5858
In some cases, the code you want to test might need multiple lines. For example, say you want to define a function that generates a random number, in the REPL session type in the following line and press enter:
5959

0 commit comments

Comments
 (0)