From cddc3d94ae34d1acb10ab6396b67f5076d6873dd Mon Sep 17 00:00:00 2001 From: inkch Date: Mon, 21 Jun 2021 16:51:08 +0900 Subject: [PATCH] Fix typo in README: resursive -> recursive --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 539040e..c4ed6ed 100644 --- a/README.md +++ b/README.md @@ -73,7 +73,7 @@ The usage and options of `node-watch` are compatible with [fs.watch](https://nod ```js watch('./', { - resursive: true, + recursive: true, filter(f, skip) { // skip node_modules if (/\/node_modules/.test(f)) return skip;