aboutsummaryrefslogtreecommitdiff
path: root/node_modules/watchpack/README.md
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2018-09-20 02:56:13 +0200
committerFlorian Dold <florian.dold@gmail.com>2018-09-20 02:56:13 +0200
commitbbff7403fbf46f9ad92240ac213df8d30ef31b64 (patch)
treec58400ec5124da1c7d56b01aea83309f80a56c3b /node_modules/watchpack/README.md
parent003fb34971cf63466184351b4db5f7c67df4f444 (diff)
update packages
Diffstat (limited to 'node_modules/watchpack/README.md')
-rw-r--r--node_modules/watchpack/README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/node_modules/watchpack/README.md b/node_modules/watchpack/README.md
index 6ff7d9249..8ade219b8 100644
--- a/node_modules/watchpack/README.md
+++ b/node_modules/watchpack/README.md
@@ -6,7 +6,7 @@ Wrapper library for directory and file watching.
## Concept
-watchpack high level API don't map directly to watchers. Instead a three level architecture ensures that for each directory only a single watcher exists.
+watchpack high level API doesn't map directly to watchers. Instead a three level architecture ensures that for each directory only a single watcher exists.
* The high level API requests `DirectoryWatchers` from a `WatcherManager`, which ensures that only a single `DirectoryWatcher` per directory is created.
* A user-faced `Watcher` can be obtained from a `DirectoryWatcher` and provides a filtered view on the `DirectoryWatcher`.
@@ -24,7 +24,7 @@ var Watchpack = require("watchpack");
var wp = new Watchpack({
// options:
aggregateTimeout: 1000
- // fire "aggregated" event when after a change for 1000ms no additonal change occured
+ // fire "aggregated" event when after a change for 1000ms no additional change occurred
// aggregated defaults to undefined, which doesn't fire an "aggregated" event
poll: true