Skip to content

Commit 6ea2ab0

Browse files
committed
Update spelling of “macOS”
1 parent e397944 commit 6ea2ab0

File tree

7 files changed

+15
-15
lines changed

7 files changed

+15
-15
lines changed

en/about/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ Ruby has a wealth of other features, among which are the following:
173173
supports it or not, even on MS-DOS!
174174

175175
* Ruby is highly portable: it is developed mostly on GNU/Linux, but
176-
works on many types of UNIX, Mac OS X, Windows, DOS, BeOS, OS/2, etc.
176+
works on many types of UNIX, macOS, Windows, DOS, BeOS, OS/2, etc.
177177

178178
### Other Implementations of Ruby
179179

en/documentation/faq/1/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ Ruby features:
6161
* Iterators and closures,
6262
* Garbage collection,
6363
* Dynamic loading (depending on the architecture),
64-
* High transportability (runs on various Unices, Windows, DOS, OS X, OS/2,
64+
* High transportability (runs on various Unices, Windows, DOS, macOS, OS/2,
6565
Amiga, and so on).
6666

6767
### Show me some Ruby code!

en/documentation/faq/3/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ or [Downloads](/en/downloads/) page.
4646
{% include faq-out-of-date.html %}
4747

4848
Ruby is developed under Linux, and is written in fairly straightforward C.
49-
It runs under Linux and other UNIX-like operating systems, Mac OS X,
49+
It runs under Linux and other UNIX-like operating systems, macOS,
5050
Windows, DOS, BeOS, Amiga, Acorn Risc OS, and OS/2.
5151

5252
### Where can I get Ruby sources?

en/documentation/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ Here is a list of popular tools used by Rubyists:
143143
* [Ruby In Steel][31]
144144
* [Atom][atom]
145145

146-
* On Mac OS X:
146+
* On macOS:
147147
* [TextMate][32]
148148
* [TextWrangler][33]
149149
* [Dash][39] (documentation browser)

en/documentation/installation/index.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ for different needs and platforms.
3232
* [CentOS, Fedora, RHEL](#yum)
3333
* [Gentoo](#portage)
3434
* [Arch Linux](#pacman)
35-
* [OS X](#homebrew)
35+
* [macOS](#homebrew)
3636
* [FreeBSD](#freebsd)
3737
* [Solaris, OpenIndiana](#solaris)
3838
* [Other Distributions](#other-systems)
@@ -120,12 +120,12 @@ $ sudo pacman -S ruby
120120
This should install the latest stable Ruby version.
121121

122122

123-
### Homebrew (OS X)
123+
### Homebrew (macOS)
124124
{: #homebrew}
125125

126126
On macOS (High) Sierra and OS X El Capitan, Ruby 2.0 is included.
127127

128-
Many people on OS X use [Homebrew][homebrew] as a package manager.
128+
Many people on macOS use [Homebrew][homebrew] as a package manager.
129129
It is really easy to get a newer version of Ruby using Homebrew:
130130

131131
{% highlight sh %}
@@ -201,7 +201,7 @@ a separate installer, it comes with its own.
201201
allows you to compile and install different versions of Ruby
202202
into arbitrary directories.
203203
ruby-build can also be used as a standalone program without rbenv.
204-
It is available for OS X, Linux, and other UNIX-like operating systems.
204+
It is available for macOS, Linux, and other UNIX-like operating systems.
205205

206206

207207
### ruby-install
@@ -211,7 +211,7 @@ It is available for OS X, Linux, and other UNIX-like operating systems.
211211
versions of Ruby into arbitrary directories.
212212
There is also a sibling, [chruby](#chruby), which handles switching between
213213
Ruby versions.
214-
It is available for OS X, Linux, and other UNIX-like operating systems.
214+
It is available for macOS, Linux, and other UNIX-like operating systems.
215215

216216

217217
### RubyInstaller
@@ -236,7 +236,7 @@ you can use the following installers:
236236
It supports OS X and Windows.
237237
* [Bitnami Ruby Stack][rubystack],
238238
which provides a complete development environment for Rails.
239-
It supports OS X, Linux, Windows, virtual machines, and cloud images.
239+
It supports macOS, Linux, Windows, virtual machines, and cloud images.
240240

241241

242242
## Managers
@@ -261,22 +261,22 @@ or even built from source.
261261
[rbenv][rbenv] allows you to manage multiple installations of Ruby.
262262
It does not support installing Ruby, but there is a popular plugin
263263
named [ruby-build](#ruby-build) to install Ruby.
264-
Both tools are available for OS X, Linux, or other UNIX-like operating systems.
264+
Both tools are available for macOS, Linux, or other UNIX-like operating systems.
265265

266266

267267
### RVM ("Ruby Version Manager")
268268
{: #rvm}
269269

270270
[RVM][rvm] allows you to install and manage multiple installations of Ruby
271271
on your system. It can also manage different gemsets.
272-
It is available for OS X, Linux, or other UNIX-like operating systems.
272+
It is available for macOS, Linux, or other UNIX-like operating systems.
273273

274274

275275
### uru
276276
{: #uru}
277277

278278
[Uru][uru] is a lightweight, multi-platform command line tool that helps you
279-
to use multiple Rubies on OS X, Linux, or Windows systems.
279+
to use multiple Rubies on macOS, Linux, or Windows systems.
280280

281281

282282
## Building from Source

en/documentation/quickstart/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ like this is a terrific way to learn the language.
3232

3333
Open up IRB (which stands for Interactive Ruby).
3434

35-
* If you’re using **Mac OS X** open up `Terminal` and type `irb`, then
35+
* If you’re using **macOS** open up `Terminal` and type `irb`, then
3636
hit enter.
3737
* If you’re using **Linux**, open up a shell and type `irb` and hit
3838
enter.

en/downloads/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ We have several tools on each major platform to install Ruby:
1515

1616
* On Linux/UNIX, you can use the package management system of your
1717
distribution or third-party tools ([rbenv][rbenv] and [RVM][rvm]).
18-
* On OS X machines, you can use third-party tools ([rbenv][rbenv] and [RVM][rvm]).
18+
* On macOS machines, you can use third-party tools ([rbenv][rbenv] and [RVM][rvm]).
1919
* On Windows machines, you can use [RubyInstaller][rubyinstaller].
2020

2121
See the [Installation][installation] page for details on using

0 commit comments

Comments
 (0)