Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: fixed typo in comments #2981

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
docs: fixed typo in comments
  • Loading branch information
0xWarren committed May 13, 2022
commit aaf7167034345605cf5379b6fdbc218028a15336
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