Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJR McEntee <jrmce12@gmail.com>2017-03-29 02:46:10 +0300
committerJames M Snell <jasnell@gmail.com>2017-04-04 20:14:24 +0300
commit7a5d07c7fbd43f3645d7f707fd6a98f2a251bdbd (patch)
treeb78aa81f4810e7280ddccf4eb84ff46c5e3d9400 /doc/api/documentation.md
parent84a23391f60c0cbde8f78fd805b6fdef6861285f (diff)
doc: change Mac OS X to macOS
This update changes references to "Mac OS X", "OS X", and "OSX" in markdown files to "macOS". PR-URL: https://github.com/nodejs/node/pull/12106 Fixes: https://github.com/nodejs/node/issues/12086 Reviewed-By: Vse Mozhet Byt <vsemozhetbyt@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
Diffstat (limited to 'doc/api/documentation.md')
-rw-r--r--doc/api/documentation.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/api/documentation.md b/doc/api/documentation.md
index 5f45c9b56ed..450a250ea9b 100644
--- a/doc/api/documentation.md
+++ b/doc/api/documentation.md
@@ -73,11 +73,11 @@ like `fs.open()`, will document that. The docs link to the corresponding man
pages (short for manual pages) which describe how the syscalls work.
**Caveat:** some syscalls, like lchown(2), are BSD-specific. That means, for
-example, that `fs.lchown()` only works on Mac OS X and other BSD-derived systems,
+example, that `fs.lchown()` only works on macOS and other BSD-derived systems,
and is not available on Linux.
Most Unix syscalls have Windows equivalents, but behavior may differ on Windows
-relative to Linux and OS X. For an example of the subtle ways in which it's
+relative to Linux and macOS. For an example of the subtle ways in which it's
sometimes impossible to replace Unix syscall semantics on Windows, see [Node
issue 4760](https://github.com/nodejs/node/issues/4760).