Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/doc/api
diff options
context:
space:
mode:
authorisaacs <i@izs.me>2012-03-04 10:12:35 +0400
committerisaacs <i@izs.me>2012-03-04 10:12:43 +0400
commita42b4ad44e62c2deacb2c4a76c5feab8ab7f9b04 (patch)
tree4bee7b286bee9fa2791070484c7ca2d74476d1bb /doc/api
parent1d59a73fefbe70188d32165cb5f738e31967ebca (diff)
doc: Typo'd some stability indicators.
Diffstat (limited to 'doc/api')
-rw-r--r--doc/api/fs.markdown6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/api/fs.markdown b/doc/api/fs.markdown
index 0d8808443ca..e30025858b7 100644
--- a/doc/api/fs.markdown
+++ b/doc/api/fs.markdown
@@ -393,7 +393,7 @@ The synchronous version of `fs.writeFile`.
## fs.watchFile(filename, [options], listener)
- Stability: 2 - Unstable. Use fs.watch instead, if available.
+ Stability: 2 - Unstable. Use fs.watch instead, if available.
Watch for changes on `filename`. The callback `listener` will be called each
time the file is accessed.
@@ -421,13 +421,13 @@ you need to compare `curr.mtime` and `prev.mtime`.
## fs.unwatchFile(filename)
- Stability: 2 - Unstable. Use fs.watch instead, if available.
+ Stability: 2 - Unstable. Use fs.watch instead, if available.
Stop watching for changes on `filename`.
## fs.watch(filename, [options], listener)
- Stability: 2 - Unstable. Not available on all platforms.
+ Stability: 2 - Unstable. Not available on all platforms.
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).