From 0397ffb0d7ab31bd6f6954cc78cb7d529c63981e Mon Sep 17 00:00:00 2001 From: Rishabhraghwendra18 <43534227+Rishabhraghwendra18@users.noreply.github.com> Date: Thu, 4 Nov 2021 16:12:50 +0530 Subject: [PATCH] removed uncessary quote (#2025) --- CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 0d2fdfb096..f9ab931a9d 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -77,7 +77,7 @@ Hardhat and its plugins are optimized for keeping startup time low. This is done by selectively requiring dependencies when needed using `import` or `require` following this criteria: 1. If something is only imported for its type, and NOT its value, use a top-level `import ... from "mod"` -1. If a module is in the "Essential modules" list below, use a top-level `import ... from "mod""`. +1. If a module is in the "Essential modules" list below, use a top-level `import ... from "mod"`. 1. Otherwise, use `await import` or `require` locally in the functions that use it. 1. If the function is sync, use node's `require` 2. If the function is an async, use `await import`