Skip to content

Commit f354e22

Browse files
committed
stability index 2 = stable
1 parent 9da168b commit f354e22

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

doc/api/fs.markdown

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -534,7 +534,7 @@ The synchronous version of `fs.appendFile`.
534534

535535
## fs.watchFile(filename[, options], listener)
536536

537-
Stability: 2 - Unstable. Use fs.watch instead, if possible.
537+
Stability: 2 - Stable. Use fs.watch instead, if possible.
538538

539539
Watch for changes on `filename`. The callback `listener` will be called each
540540
time the file is accessed.
@@ -560,7 +560,7 @@ you need to compare `curr.mtime` and `prev.mtime`.
560560

561561
## fs.unwatchFile(filename[, listener])
562562

563-
Stability: 2 - Unstable. Use fs.watch instead, if possible.
563+
Stability: 2 - Stable. Use fs.watch instead, if possible.
564564

565565
Stop watching for changes on `filename`. If `listener` is specified, only that
566566
particular listener is removed. Otherwise, *all* listeners are removed and you
@@ -571,7 +571,7 @@ no-op, not an error.
571571

572572
## fs.watch(filename[, options][, listener])
573573

574-
Stability: 2 - Unstable.
574+
Stability: 2 - Stable.
575575

576576
Watch for changes on `filename`, where `filename` is either a file or a
577577
directory. The returned object is a [fs.FSWatcher](#fs_class_fs_fswatcher).

0 commit comments

Comments
 (0)