summaryrefslogtreecommitdiff
path: root/doc/api/cluster.md
diff options
context:
space:
mode:
authorVse Mozhet Byt <vsemozhetbyt@gmail.com>2018-04-09 15:25:04 +0300
committerVse Mozhet Byt <vsemozhetbyt@gmail.com>2018-04-09 17:04:48 +0300
commitdff214153f1b48615e3e4f134b252fbbe363c36f (patch)
treea8cb25513bfdfeb90f62e5d43885eb4d51b2ce85 /doc/api/cluster.md
parent321c178faa51d1f9e7c8ac60790aeca187a50e1f (diff)
downloadandroid-node-v8-dff214153f1b48615e3e4f134b252fbbe363c36f.tar.gz
android-node-v8-dff214153f1b48615e3e4f134b252fbbe363c36f.tar.bz2
android-node-v8-dff214153f1b48615e3e4f134b252fbbe363c36f.zip
doc: specify definite Array types
Replace `{Array}` with `{type[]}`. PR-URL: https://github.com/nodejs/node/pull/19895 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Diffstat (limited to 'doc/api/cluster.md')
-rw-r--r--doc/api/cluster.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/api/cluster.md b/doc/api/cluster.md
index 7385e9ba78..5f5273d373 100644
--- a/doc/api/cluster.md
+++ b/doc/api/cluster.md
@@ -713,10 +713,10 @@ changes:
-->
* {Object}
- * `execArgv` {Array} List of string arguments passed to the Node.js
+ * `execArgv` {string[]} List of string arguments passed to the Node.js
executable. **Default:** `process.execArgv`.
* `exec` {string} File path to worker file. **Default:** `process.argv[1]`.
- * `args` {Array} String arguments passed to worker.
+ * `args` {string[]} String arguments passed to worker.
**Default:** `process.argv.slice(2)`.
* `cwd` {string} Current working directory of the worker process. **Default:**
`undefined` (inherits from parent process).