Skip to content

Commit a4f6802

Browse files
authored
Replace occurrences of MacOS with macOS (#6494)
1 parent 97a186a commit a4f6802

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

components/Common/Select/index.stories.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ export const InlineSelect: Story = {
8282
},
8383
{
8484
value: 'macos',
85-
label: 'MacOS',
85+
label: 'macOS',
8686
iconImage: <Apple width={16} height={16} />,
8787
},
8888
{

pages/en/learn/getting-started/how-to-install-nodejs.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ authors: flaviocopes, ZYSzys, ollelauribostrom, MylesBorins, fhemberger, LaRuaNa
88

99
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).
1010

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/)
1212

1313
`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.
1414

util/downloadUtils.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import type { UserOS } from '@/types/userOS';
44
// A utility enum to help convert `userOs` data type to user-readable format
55
export enum OperatingSystem {
66
WIN = 'Windows',
7-
MAC = 'MacOS',
7+
MAC = 'macOS',
88
LINUX = 'Linux',
99
OTHER = 'Other',
1010
}

0 commit comments

Comments
 (0)