@@ -3548,7 +3548,7 @@ the error raised if the file is not accessible.
3548
3548
added: REPLACEME
3549
3549
-->
3550
3550
3551
- * ` file ` {string|Buffer|URL|[ FileHandle] [ ] } filename or ` FileHandle `
3551
+ * ` file ` {string|Buffer|URL|FileHandle} filename or ` FileHandle `
3552
3552
* ` data ` {string|Buffer}
3553
3553
* ` options ` {Object|string}
3554
3554
* ` encoding ` {string|null} ** Default:** ` 'utf8' `
@@ -3640,7 +3640,7 @@ fs.promises.copyFile('source.txt', 'destination.txt', COPYFILE_EXCL)
3640
3640
added: REPLACEME
3641
3641
-->
3642
3642
3643
- * ` filehandle ` {[ FileHandle] [ ] }
3643
+ * ` filehandle ` {FileHandle}
3644
3644
* ` mode ` {integer}
3645
3645
* Returns: {Promise}
3646
3646
@@ -3652,7 +3652,7 @@ success.
3652
3652
added: REPLACEME
3653
3653
-->
3654
3654
3655
- * ` filehandle ` {[ FileHandle] [ ] }
3655
+ * ` filehandle ` {FileHandle}
3656
3656
* ` uid ` {integer}
3657
3657
* ` gid ` {integer}
3658
3658
* Returns: {Promise}
@@ -3665,7 +3665,7 @@ the `Promise` with no arguments upon success.
3665
3665
added: REPLACEME
3666
3666
-->
3667
3667
3668
- * ` filehandle ` {[ FileHandle] [ ] }
3668
+ * ` filehandle ` {FileHandle}
3669
3669
* Returns: {Promise}
3670
3670
3671
3671
Asynchronous fdatasync(2). The ` Promise ` is resolved with no arguments upon
@@ -3676,7 +3676,7 @@ success.
3676
3676
added: REPLACEME
3677
3677
-->
3678
3678
3679
- * ` filehandle ` {[ FileHandle] [ ] }
3679
+ * ` filehandle ` {FileHandle}
3680
3680
* Returns: {Promise}
3681
3681
3682
3682
Retrieves the [ ` fs.Stats ` ] [ ] for the given ` filehandle ` .
@@ -3686,7 +3686,7 @@ Retrieves the [`fs.Stats`][] for the given `filehandle`.
3686
3686
added: REPLACEME
3687
3687
-->
3688
3688
3689
- * ` filehandle ` {[ FileHandle] [ ] }
3689
+ * ` filehandle ` {FileHandle}
3690
3690
* Returns: {Promise}
3691
3691
3692
3692
Asynchronous fsync(2). The ` Promise ` is resolved with no arguments upon
@@ -3697,7 +3697,7 @@ success.
3697
3697
added: REPLACEME
3698
3698
-->
3699
3699
3700
- * ` filehandle ` {[ FileHandle] [ ] }
3700
+ * ` filehandle ` {FileHandle}
3701
3701
* ` len ` {integer} ** Default:** ` 0 `
3702
3702
* Returns: {Promise}
3703
3703
@@ -3746,7 +3746,7 @@ The last three bytes are null bytes ('\0'), to compensate the over-truncation.
3746
3746
added: REPLACEME
3747
3747
-->
3748
3748
3749
- * ` filehandle ` {[ FileHandle] [ ] }
3749
+ * ` filehandle ` {FileHandle}
3750
3750
* ` atime ` {number|string|Date}
3751
3751
* ` mtime ` {number|string|Date}`
3752
3752
* Returns: {Promise}
@@ -3934,7 +3934,7 @@ files can be opened for writing with the `r+` flag. A call to
3934
3934
added: REPLACEME
3935
3935
-->
3936
3936
3937
- * ` filehandle ` {[ FileHandle] [ ] }
3937
+ * ` filehandle ` {FileHandle}
3938
3938
* ` buffer ` {Buffer|Uint8Array}
3939
3939
* ` offset ` {integer}
3940
3940
* ` length ` {integer}
@@ -3981,7 +3981,7 @@ will be passed as `Buffer` objects.
3981
3981
added: REPLACEME
3982
3982
-->
3983
3983
3984
- * ` path ` {string|Buffer|URL|[ FileHandle] [ ] } filename or ` FileHandle `
3984
+ * ` path ` {string|Buffer|URL|FileHandle} filename or ` FileHandle `
3985
3985
* ` options ` {Object|string}
3986
3986
* ` encoding ` {string|null} ** Default:** ` null `
3987
3987
* ` flag ` {string} ** Default:** ` 'r' `
@@ -4147,7 +4147,7 @@ The `atime` and `mtime` arguments follow these rules:
4147
4147
added: REPLACEME
4148
4148
-->
4149
4149
4150
- * ` filehandle ` {[ FileHandle] [ ] }
4150
+ * ` filehandle ` {FileHandle}
4151
4151
* ` buffer ` {Buffer|Uint8Array}
4152
4152
* ` offset ` {integer}
4153
4153
* ` length ` {integer}
@@ -4180,7 +4180,7 @@ the end of the file.
4180
4180
added: REPLACEME
4181
4181
-->
4182
4182
4183
- * ` file ` {string|Buffer|URL|[ FileHandle] [ ] } filename or ` FileHandle `
4183
+ * ` file ` {string|Buffer|URL|FileHandle} filename or ` FileHandle `
4184
4184
* ` data ` {string|Buffer|Uint8Array}
4185
4185
* ` options ` {Object|string}
4186
4186
* ` encoding ` {string|null} ** Default:** ` 'utf8' `
@@ -4469,7 +4469,6 @@ The following constants are meant for use with the [`fs.Stats`][] object's
4469
4469
[ `util.promisify()` ] : util.html#util_util_promisify_original
4470
4470
[ Caveats ] : #fs_caveats
4471
4471
[ Common System Errors ] : errors.html#errors_common_system_errors
4472
- [ FileHandle ] : #fs_class_filehandle
4473
4472
[ FS Constants ] : #fs_fs_constants_1
4474
4473
[ MDN-Date ] : https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/Date
4475
4474
[ MDN-Number ] : https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#Number_type
0 commit comments