Remove refs to watcher (#5169)

I accidentally reintroduced an old reference to `watchers`, removed in this PR
This commit is contained in:
Robin 2018-04-14 19:37:06 +01:00 committed by Franck Nijhof
parent 0d603c0a6e
commit 17285ba293

View File

@ -26,8 +26,7 @@ To enable the Folder Watcher component in your installation, add the following t
{% raw %}
```yaml
folder_watcher:
watchers:
- folder: /config
- folder: /config
```
{% endraw %}
@ -50,11 +49,10 @@ Pattern matching using [fnmatch](https://docs.python.org/3.6/library/fnmatch.htm
{% raw %}
```yaml
folder_watcher:
watchers:
- folder: /config
patterns:
- '*.yaml'
- '*.txt'
- folder: /config
patterns:
- '*.yaml'
- '*.txt'
```
{% endraw %}