summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorBartosz Sosnowski <bartosz@janeasystems.com>2017-09-14 14:26:42 +0200
committerRuben Bridgewater <ruben@bridgewater.de>2017-09-19 16:32:41 -0300
commit1ebde6e1137b616de223c1b6fe3d8d30b5a9d3f5 (patch)
treec3f291d6d4dc655dfdf100cda83bf9f82df23489 /doc
parente86952d21efaf4679e5684a4e840bd55b6f2c440 (diff)
downloadnode-new-1ebde6e1137b616de223c1b6fe3d8d30b5a9d3f5.tar.gz
doc: make mkdtemp example work on Windows
PR-URL: https://github.com/nodejs/node/pull/15408 Fixes: https://github.com/nodejs/node/issues/14960 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Vse Mozhet Byt <vsemozhetbyt@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Diffstat (limited to 'doc')
-rw-r--r--doc/api/fs.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/api/fs.md b/doc/api/fs.md
index 0ae7fee6cb..a44bbd368e 100644
--- a/doc/api/fs.md
+++ b/doc/api/fs.md
@@ -1536,10 +1536,10 @@ object with an `encoding` property specifying the character encoding to use.
Example:
```js
-fs.mkdtemp('/tmp/foo-', (err, folder) => {
+fs.mkdtemp(path.join(os.tmpdir(), 'foo-'), (err, folder) => {
if (err) throw err;
console.log(folder);
- // Prints: /tmp/foo-itXde2
+ // Prints: /tmp/foo-itXde2 or C:\Users\...\AppData\Local\Temp\foo-itXde2
});
```
@@ -1551,7 +1551,7 @@ the `prefix` *must* end with a trailing platform-specific path separator
```js
// The parent directory for the new temporary directory
-const tmpDir = '/tmp';
+const tmpDir = os.tmpdir();
// This method is *INCORRECT*:
fs.mkdtemp(tmpDir, (err, folder) => {