@@ -784,7 +784,7 @@ function readvSync(fd, buffers, position) {
784
784
/**
785
785
* Writes `buffer` to the specified `fd` (file descriptor).
786
786
* @param {number } fd
787
- * @param {Buffer | TypedArray | DataView | string | Object } buffer
787
+ * @param {Buffer | TypedArray | DataView | string | object } buffer
788
788
* @param {number } [offset]
789
789
* @param {number } [length]
790
790
* @param {number } [position]
@@ -849,7 +849,7 @@ ObjectDefineProperty(write, internalUtil.customPromisifyArgs,
849
849
* Synchronously writes `buffer` to the
850
850
* specified `fd` (file descriptor).
851
851
* @param {number } fd
852
- * @param {Buffer | TypedArray | DataView | string | Object } buffer
852
+ * @param {Buffer | TypedArray | DataView | string | object } buffer
853
853
* @param {number } [offset]
854
854
* @param {number } [length]
855
855
* @param {number } [position]
@@ -2087,7 +2087,7 @@ function writeAll(fd, isUserFd, buffer, offset, length, signal, callback) {
2087
2087
/**
2088
2088
* Asynchronously writes data to the file.
2089
2089
* @param {string | Buffer | URL | number } path
2090
- * @param {string | Buffer | TypedArray | DataView | Object } data
2090
+ * @param {string | Buffer | TypedArray | DataView | object } data
2091
2091
* @param {{
2092
2092
* encoding?: string | null;
2093
2093
* mode?: number;
@@ -2131,7 +2131,7 @@ function writeFile(path, data, options, callback) {
2131
2131
/**
2132
2132
* Synchronously writes data to the file.
2133
2133
* @param {string | Buffer | URL | number } path
2134
- * @param {string | Buffer | TypedArray | DataView | Object } data
2134
+ * @param {string | Buffer | TypedArray | DataView | object } data
2135
2135
* @param {{
2136
2136
* encoding?: string | null;
2137
2137
* mode?: number;
@@ -2805,7 +2805,7 @@ function copyFileSync(src, dest, mode) {
2805
2805
* symlink. The contents of directories will be copied recursively.
2806
2806
* @param {string | URL } src
2807
2807
* @param {string | URL } dest
2808
- * @param {Object } [options]
2808
+ * @param {object } [options]
2809
2809
* @param {() => any } callback
2810
2810
* @returns {void }
2811
2811
*/
@@ -2827,7 +2827,7 @@ function cp(src, dest, options, callback) {
2827
2827
* symlink. The contents of directories will be copied recursively.
2828
2828
* @param {string | URL } src
2829
2829
* @param {string | URL } dest
2830
- * @param {Object } [options]
2830
+ * @param {object } [options]
2831
2831
* @returns {void }
2832
2832
*/
2833
2833
function cpSync ( src , dest , options ) {
0 commit comments