From 24b39adc3ccf3af19c5c0fca42df8db3cc09636b Mon Sep 17 00:00:00 2001 From: Kevin Johnson Date: Tue, 23 Mar 2021 11:15:52 -0700 Subject: [PATCH] docs: Change 'that' to 'this' in 'Node.js with Typescript' --- src/documentation/0056-node-with-typescript/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/documentation/0056-node-with-typescript/index.md b/src/documentation/0056-node-with-typescript/index.md index 9d21ef98e0..3f92baa8f2 100644 --- a/src/documentation/0056-node-with-typescript/index.md +++ b/src/documentation/0056-node-with-typescript/index.md @@ -49,7 +49,7 @@ npm install typescript Now we can compile it to JavaScript using `tsc` command in the terminal. Let's do it! -Assuming that our file is named `example.ts` the command would like like that: +Assuming that our file is named `example.ts` the command would like like this: ```bash tsc example.ts