@@ -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
539539Watch for changes on ` filename ` . The callback ` listener ` will be called each
540540time 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
565565Stop watching for changes on ` filename ` . If ` listener ` is specified, only that
566566particular 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
576576Watch for changes on ` filename ` , where ` filename ` is either a file or a
577577directory. The returned object is a [ fs.FSWatcher] ( #fs_class_fs_fswatcher ) .
0 commit comments