summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEric Huss <eric@huss.org>2024-05-13 13:18:50 -0700
committerEric Huss <eric@huss.org>2024-05-13 13:18:50 -0700
commit46d57bcf3c5ba406046aec790c3112ea5d04f39c (patch)
treea256a505529e506edb604296b89c9f0254b2e720
parentf3e85da9a7808244f6a56f1fed31fa38197636b2 (diff)
Add some more context on why `--watcher=native` may not be desirable.
-rw-r--r--guide/src/cli/arg-watcher.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/guide/src/cli/arg-watcher.md b/guide/src/cli/arg-watcher.md
index e8bb6385..9a3aec16 100644
--- a/guide/src/cli/arg-watcher.md
+++ b/guide/src/cli/arg-watcher.md
@@ -4,4 +4,4 @@ There are different backends used to determine when a file has changed.
* `poll` (default) --- Checks for file modifications by scanning the filesystem every second.
* `native` --- Uses the native operating system facilities to receive notifications when files change.
- This can have less constant overhead, but may not be as reliable as the `poll` based watcher.
+ This can have less constant overhead, but may not be as reliable as the `poll` based watcher. See these issues for more information: [#383](https://github.com/rust-lang/mdBook/issues/383) [#1441](https://github.com/rust-lang/mdBook/issues/1441) [#1707](https://github.com/rust-lang/mdBook/issues/1707) [#2035](https://github.com/rust-lang/mdBook/issues/2035) [#2102](https://github.com/rust-lang/mdBook/issues/2102)