Skip to content

Commit

Permalink
docs: fix type in comments of admin tools (ethers-io#2981).
Browse files Browse the repository at this point in the history
  • Loading branch information
ricmoo committed May 14, 2022
1 parent d5815cc commit 8e31b4d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion misc/admin/lib/cmds/link.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ function link(existing, path) {
return __awaiter(this, void 0, void 0, function* () {
console.log(log_1.colorify.bold(`Linking ${path_2.packages.length} package node_modules rat nests...`));
const nodeModulesBase = (0, path_1.resolve)(path_2.dirs.root, ".package_node_modules");
// Make a symlink in the ROOT/node_mpdules to each package in this repo
// Make a symlink in the ROOT/node_modules to each package in this repo
path_2.packages.forEach((name) => {
// e.g. /node_modules/@ethersproject/abi => /packages/abi
link((0, path_2.getPackagePath)(name), (0, path_1.resolve)(path_2.dirs.root, "node_modules", name));
Expand Down
2 changes: 1 addition & 1 deletion misc/admin/src.ts/cmds/link.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ function link(existing: string, path: string): void {

const nodeModulesBase = resolve(dirs.root, ".package_node_modules");

// Make a symlink in the ROOT/node_mpdules to each package in this repo
// Make a symlink in the ROOT/node_modules to each package in this repo
packages.forEach((name) => {

// e.g. /node_modules/@ethersproject/abi => /packages/abi
Expand Down

0 comments on commit 8e31b4d

Please sign in to comment.