From afed91646a264969bb14178f9c8d7679729f2005 Mon Sep 17 00:00:00 2001 From: Chris O'Haver Date: Fri, 11 May 2018 13:51:21 -0400 Subject: [PATCH] plugin/proxy: fix except example (#1796) I just noticed this discrepancy in one of the `except` examples. --- plugin/proxy/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/proxy/README.md b/plugin/proxy/README.md index fe01e736e..7341d31a6 100644 --- a/plugin/proxy/README.md +++ b/plugin/proxy/README.md @@ -165,7 +165,7 @@ Proxy everything except `example.org` using the host's `resolv.conf`'s nameserve ~~~ corefile . { proxy . /etc/resolv.conf { - except miek.nl example.org + except example.org } } ~~~