Skip to content

Commit 8e31b4d

Browse files
committed
docs: fix type in comments of admin tools (ethers-io#2981).
1 parent d5815cc commit 8e31b4d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

misc/admin/lib/cmds/link.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ function link(existing, path) {
4141
return __awaiter(this, void 0, void 0, function* () {
4242
console.log(log_1.colorify.bold(`Linking ${path_2.packages.length} package node_modules rat nests...`));
4343
const nodeModulesBase = (0, path_1.resolve)(path_2.dirs.root, ".package_node_modules");
44-
// Make a symlink in the ROOT/node_mpdules to each package in this repo
44+
// Make a symlink in the ROOT/node_modules to each package in this repo
4545
path_2.packages.forEach((name) => {
4646
// e.g. /node_modules/@ethersproject/abi => /packages/abi
4747
link((0, path_2.getPackagePath)(name), (0, path_1.resolve)(path_2.dirs.root, "node_modules", name));

misc/admin/src.ts/cmds/link.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ function link(existing: string, path: string): void {
2929

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

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

3535
// e.g. /node_modules/@ethersproject/abi => /packages/abi

0 commit comments

Comments
 (0)