Skip to content

Commit

Permalink
removed uncessary quote (NomicFoundation#2025)
Browse files Browse the repository at this point in the history
  • Loading branch information
Rishabhraghwendra18 authored Nov 4, 2021
1 parent 4c0292a commit 0397ffb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`
Expand Down

0 comments on commit 0397ffb

Please sign in to comment.