Skip to content

Commit 3f7209e

Browse files
committed
docs: rebrand OS X and OSX references to macOS
1 parent 4c574b8 commit 3f7209e

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

content/getting-started/configuring-your-local-environment/downloading-and-installing-node-js-and-npm.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ npm -v
3535

3636
Node version managers allow you to install and switch between multiple versions of Node.js and npm on your system so you can test your applications on multiple versions of npm to ensure they work for users on different versions.
3737

38-
### OSX or Linux Node version managers
38+
### macOS or Linux Node version managers
3939

4040
- [nvm](https://github.com/creationix/nvm)
4141
- [n](https://github.com/tj/n)
@@ -54,9 +54,9 @@ If you are unable to use a Node version manager, you can use a Node installer to
5454

5555
If you use Linux, we recommend that you use a NodeSource installer.
5656

57-
### OS X or Windows Node installers
57+
### macOS or Windows Node installers
5858

59-
If you're using OS X or Windows, use one of the installers from the [Node.js download page](https://nodejs.org/en/download/). Be sure to install the version labeled **LTS**. Other versions have not yet been tested with npm.
59+
If you're using macOS or Windows, use one of the installers from the [Node.js download page](https://nodejs.org/en/download/). Be sure to install the version labeled **LTS**. Other versions have not yet been tested with npm.
6060

6161
### Linux or other operating systems Node installers
6262

content/getting-started/troubleshooting/try-the-latest-stable-version-of-node.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ For some Linux distributions (Debian/Ubuntu and RedHat/CentOS), the latest node
2020

2121
Install the latest msi from [https://nodejs.org/en/download](https://nodejs.org/en/download)
2222

23-
### Updating node on OSX
23+
### Updating node on macOS
2424

2525
Install the latest package from [https://nodejs.org/en/download](https://nodejs.org/en/download)
2626

content/getting-started/troubleshooting/try-the-latest-stable-version-of-npm.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ redirect_from:
1010
npm -v
1111
```
1212

13-
## Upgrading on `*nix` (OSX, Linux, etc.)
13+
## Upgrading on `*nix` (macOS, Linux, etc.)
1414

15-
_(You may need to prefix these commands with `sudo`, especially on Linux, or OS X if you installed Node using its default installer.)_
15+
_(You may need to prefix these commands with `sudo`, especially on Linux, or macOS if you installed Node using its default installer.)_
1616

1717
You can upgrade to the latest version of npm using:
1818

content/packages-and-modules/getting-packages-from-the-registry/uninstalling-packages-and-dependencies.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ npm uninstall --no-save lodash
5858

5959
To confirm that `npm uninstall` worked correctly, check that the `node_modules` directory no longer contains a directory for the uninstalled package(s).
6060

61-
- Unix system (such as OSX): `ls node_modules`
61+
- Unix system (such as macOS): `ls node_modules`
6262
- Windows systems: `dir node_modules`
6363

6464
## Uninstalling global packages

0 commit comments

Comments
 (0)