From acc1142e25024f66028ef0b32f9a5e5ef0c9d6ac Mon Sep 17 00:00:00 2001 From: Sakthipriyan Vairamani Date: Wed, 18 May 2016 15:38:49 +0530 Subject: [PATCH] doc: fix mkdtemp example by removing hyphen The example uses only `/tmp`, not `/tmp-`. So, the result cannot be `/tmp-abc123`, but just `/tmpabc123`. PR-URL: https://github.com/nodejs/node/pull/6834 Reviewed-By: Anna Henningsen Reviewed-By: James M Snell Reviewed-By: Colin Ihrig --- doc/api/fs.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/api/fs.md b/doc/api/fs.md index e369d925e7c..8e2d8c289cc 100644 --- a/doc/api/fs.md +++ b/doc/api/fs.md @@ -914,7 +914,7 @@ const tmpDir = '/tmp'; fs.mkdtemp(tmpDir, (err, folder) => { if (err) throw err; console.log(folder); - // Will print something similar to `/tmp-abc123`. + // Will print something similar to `/tmpabc123`. // Note that a new temporary directory is created // at the file system root rather than *within* // the /tmp directory.