doc: minor tweaks

Myles Borins committed Apr 12, 2022 at 11:30 UTC 553657dcb183f3b8df2f3dd5dcf76e84cd280033
2 files changed +2 -4
content/packages-and-modules/updating-and-managing-your-published-packages/adding-collaborators-to-private-packages-owned-by-a-user-account.mdx
+1 -3
@@ -10,7 +10,7 @@ As an npm user with a paid user account, you can another npm user with a paid ac
10
11 </Note>
12
13 -When you add a member to your package, they are sent an email inviting them to the package. The new member has to accept the invitation get access to the package.
13 +When you add a member to your package, they are sent an email inviting them to the package. The new member has to accept the invitation gain access to the package.
14
15 ## Granting access to a private user package on the web
16
@@ -27,8 +27,6 @@ To add a collaborator to a package on the command line, run the following comman
27 npm owner add <user> <your-package-name>
28 ```
29
30 -
31 -
30 ## Granting access to private organization packages
31
32 To grant an npm user access to private organization packages, you must have an organization owner add them to your organization, then add them to a team that has access to the private package. For more information, see "[Adding members to your organization][add-org-members]".
content/packages-and-modules/updating-and-managing-your-published-packages/transferring-a-package-from-a-user-account-to-another-user-account.mdx
+1 -1
@@ -31,7 +31,7 @@ To transfer a package you own or maintain to another user, follow these steps:
31
32 ## Transferring a package from a user account to another user account on the command line
33
34 -To transfer a package to another npm user using the CLI, run the `npm owner add` command replacing `<their-username>` with the other user's npm username. An email invitation is sent to the other user. After the user has accepted the invitation, run the `npm owner rm` command replacing `<your-username>` with your npm username:
34 +To transfer a package to another npm user using the CLI, run the [`npm owner add`][npm-owner] command replacing `<their-username>` with the other user's npm username. An email invitation is sent to the other user. After the user has accepted the invitation, run the `npm owner rm` command replacing `<your-username>` with your npm username:
35
36 ```
37 npm owner add <their-username> <package-name>