From 573c45255022741a59ad7c37a23a7bed5242c63f Mon Sep 17 00:00:00 2001 From: Caleb Sander <caleb.sander@gmail.com> Date: Mon, 28 Sep 2020 23:36:13 -0700 Subject: [PATCH] Fix typo in comment --- notes/async-await/await-emoji.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/notes/async-await/await-emoji.js b/notes/async-await/await-emoji.js index 2d619e2..2857cf6 100644 --- a/notes/async-await/await-emoji.js +++ b/notes/async-await/await-emoji.js @@ -1,6 +1,6 @@ // The node-fetch package provides a fetch() function for Node.js. // Like in a browser, this makes a Promise for an HTTP request. -// You can install using with `npm install node-fetch` +// You can install it using `npm install node-fetch`. const fetch = require('node-fetch') const README_URL = 'https://unicode.org/Public/zipped/latest/ReadMe.txt' -- GitLab