From 7e41563a0ee9af6bcfdcb010cee34e97b7f9ebcf Mon Sep 17 00:00:00 2001 From: Sanchit Hira Date: Mon, 18 Sep 2023 22:50:25 -0700 Subject: [PATCH] 3-how-to-run-a-program.mdx Fix Typo --- src/content/chapters/3-how-to-run-a-program.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/chapters/3-how-to-run-a-program.mdx b/src/content/chapters/3-how-to-run-a-program.mdx index b66fda9..0e77281 100644 --- a/src/content/chapters/3-how-to-run-a-program.mdx +++ b/src/content/chapters/3-how-to-run-a-program.mdx @@ -237,7 +237,7 @@ The modified `argv` finally passed to the Node interpreter will be: ```c -[ "/usr/bin/node", "--experimental-module", "./script", "B", "C" ] +[ "/usr/bin/node", "--experimental-module", "./script", "A", "B", "C" ] ```