summaryrefslogtreecommitdiff
path: root/lib/fs.js
diff options
context:
space:
mode:
authorRich Trott <rtrott@gmail.com>2022-03-26 20:48:11 -0700
committerRich Trott <rtrott@gmail.com>2022-03-27 08:35:14 -0700
commit3c97583a0d446091a23c1f1d1d57760dba41bc26 (patch)
treef1974eb55b76ae895283a2c9ae50c740777a0e62 /lib/fs.js
parenta7697c5e05c8a8892ac78d73bc6f1e65ab1a1243 (diff)
downloadnode-new-3c97583a0d446091a23c1f1d1d57760dba41bc26.tar.gz
lib: update JSDoc for linting
Fix issue that will be flagged when we update ESLint and dependencies. PR-URL: https://github.com/nodejs/node/pull/42489 Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Mestery <mestery@protonmail.com> Reviewed-By: Darshan Sen <raisinten@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Diffstat (limited to 'lib/fs.js')
-rw-r--r--lib/fs.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/fs.js b/lib/fs.js
index 611eaaa90c..2895c11d8e 100644
--- a/lib/fs.js
+++ b/lib/fs.js
@@ -2876,7 +2876,7 @@ function lazyLoadStreams() {
* start: number;
* end?: number;
* highWaterMark?: number;
- * fs?: Object | null;
+ * fs?: object | null;
* }} [options]
* @returns {ReadStream}
*/
@@ -2896,7 +2896,7 @@ function createReadStream(path, options) {
* autoClose?: boolean;
* emitClose?: boolean;
* start: number;
- * fs?: Object | null;
+ * fs?: object | null;
* }} [options]
* @returns {WriteStream}
*/