Skip to content

Commit

Permalink
doc: set off note in styling consistent with existing docs
Browse files Browse the repository at this point in the history
  • Loading branch information
Trott committed May 26, 2015
1 parent 0cc60e5 commit 97120bc
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions doc/api/fs.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -556,9 +556,9 @@ These stat objects are instances of `fs.Stat`.
If you want to be notified when the file was modified, not just accessed
you need to compare `curr.mtime` and `prev.mtime`.

`fs.watch` is more efficient than `fs.watchFile` and `fs.unwatchFile`.
_Note: `fs.watch` is more efficient than `fs.watchFile` and `fs.unwatchFile`.
`fs.watch` should be used instead of `fs.watchFile` and `fs.unwatchFile`
when possible.
when possible._

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

Expand All @@ -569,9 +569,9 @@ have effectively stopped watching `filename`.
Calling `fs.unwatchFile()` with a filename that is not being watched is a
no-op, not an error.

`fs.watch` is more efficient than `fs.watchFile` and `fs.unwatchFile`.
_Note: `fs.watch` is more efficient than `fs.watchFile` and `fs.unwatchFile`.
`fs.watch` should be used instead of `fs.watchFile` and `fs.unwatchFile`
when possible.
when possible._

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

Expand Down

0 comments on commit 97120bc

Please sign in to comment.