Skip to content

Commit

Permalink
stability index 2 = stable
Browse files Browse the repository at this point in the history
  • Loading branch information
Trott committed May 23, 2015
1 parent 9da168b commit f354e22
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions doc/api/fs.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -534,7 +534,7 @@ The synchronous version of `fs.appendFile`.

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

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

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

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

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

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

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

Stability: 2 - Unstable.
Stability: 2 - Stable.

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

0 comments on commit f354e22

Please sign in to comment.