From d9158e945b9c990cba86b84fcf284dd681014ea7 Mon Sep 17 00:00:00 2001 From: olsonpm Date: Wed, 31 Jan 2018 22:18:51 -0600 Subject: [PATCH] fix sane signatures (#110) --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 2b9a886..926ccc0 100644 --- a/README.md +++ b/README.md @@ -61,15 +61,15 @@ For the ignored options, see [anymatch](https://github.com/es128/anymatch). ### sane.NodeWatcher(dir, options) -The default watcher class. Uses `fs.watch` under the hood, and takes the same options as `sane(options, dir)`. +The default watcher class. Uses `fs.watch` under the hood, and takes the same options as `sane(dir, options)`. ### sane.WatchmanWatcher(dir, options) -The watchman watcher class. Takes the same options as `sane(options, dir)`. +The watchman watcher class. Takes the same options as `sane(dir, options)`. ### sane.PollWatcher(dir, options) -The polling watcher class. Takes the same options as `sane(options, dir)` with the addition of: +The polling watcher class. Takes the same options as `sane(dir, options)` with the addition of: * interval: indicates how often the files should be polled. (passed to fs.watchFile)