The Node.js® Website

Replace occurrences of `MacOS` with `macOS` (#6494)

authored by Lucas Caton and committed by GitHub a4f68023 97a186a3

Changed files
+3 -3
components
Common
pages
en
learn
getting-started
util
+1 -1
components/Common/Select/index.stories.tsx
··· 82 82 }, 83 83 { 84 84 value: 'macos', 85 - label: 'MacOS', 85 + label: 'macOS', 86 86 iconImage: <Apple width={16} height={16} />, 87 87 }, 88 88 {
+1 -1
pages/en/learn/getting-started/how-to-install-nodejs.md
··· 8 8 9 9 Node.js can be installed in different ways. This post highlights the most common and convenient ones. Official packages for all the major platforms are available at [https://nodejs.org/download/](/download). 10 10 11 - One very convenient way to install Node.js is through a package manager. In this case, every operating system has its own. Other package managers for MacOS, Linux, and Windows are listed in [https://nodejs.org/download/package-manager/](/download/package-manager/) 11 + One very convenient way to install Node.js is through a package manager. In this case, every operating system has its own. Other package managers for macOS, Linux, and Windows are listed in [https://nodejs.org/download/package-manager/](/download/package-manager/) 12 12 13 13 `nvm` is a popular way to run Node.js. It allows you to easily switch the Node.js version, and install new versions to try and easily rollback if something breaks. It is also very useful to test your code with old Node.js versions. 14 14
+1 -1
util/downloadUtils.ts
··· 4 4 // A utility enum to help convert `userOs` data type to user-readable format 5 5 export enum OperatingSystem { 6 6 WIN = 'Windows', 7 - MAC = 'MacOS', 7 + MAC = 'macOS', 8 8 LINUX = 'Linux', 9 9 OTHER = 'Other', 10 10 }