From 4e14a88cd733768786d6fab1c7185acd65efbd4e Mon Sep 17 00:00:00 2001
From: Aleksey Dmitrevskiy <ad@adguard.com>
Date: Thu, 7 Mar 2019 12:00:32 +0300
Subject: [PATCH 1/2] [change] Configuration: update Configuration file wiki

---
 Configuration.md | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/Configuration.md b/Configuration.md
index 987b34a..bc100d7 100644
--- a/Configuration.md
+++ b/Configuration.md
@@ -45,7 +45,8 @@ Settings are stored in [YAML format](https://en.wikipedia.org/wiki/YAML), possib
    * `ratelimit` — DDoS protection, specifies in how many packets per second a client should receive. Anything above that is silently dropped. To disable set 0, default is 20. Safe to disable if DNS server is not available from internet.
    * `ratelimit_whitelist` — If you want exclude some IP addresses from ratelimiting but keep ratelimiting on for others, put them here.
    * `refuse_any` — Another DDoS protection mechanism. Requests of type ANY are rarely needed, so refusing to serve them mitigates against attackers trying to use your DNS as a reflection. Safe to disable if DNS server is not available from internet.
-   * `bootstrap_dns` — DNS server used for initial hostname resolution in case if upstream server name is a hostname.
+   * `bootstrap_dns` — List of DNS servers used for initial hostname resolution in case if upstream server name is a hostname.
+   * `all_servers` — Enables parallel queries to all configured upstream servers to speed up resolving. If disabled, the queries are sent to each upstream server alternately and then sorted by RTT.
    * `parental_sensitivity` — Age group for parental control-based filtering, must be either 3, 10, 13 or 17 if enabled.
    * `parental_enabled` — Parental control-based DNS requests filtering.
    * `safesearch_enabled` — Enforcing "Safe search" option for search engines, when possible.

From 2f75274a72c791b8c038b039ad8aafa3c4520d1e Mon Sep 17 00:00:00 2001
From: Aleksey Dmitrevskiy <ad@adguard.com>
Date: Thu, 7 Mar 2019 16:38:01 +0300
Subject: [PATCH 2/2] [fix] Configuration: fix grammar

---
 Configuration.md | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/Configuration.md b/Configuration.md
index bc100d7..fcf84a6 100644
--- a/Configuration.md
+++ b/Configuration.md
@@ -45,8 +45,8 @@ Settings are stored in [YAML format](https://en.wikipedia.org/wiki/YAML), possib
    * `ratelimit` — DDoS protection, specifies in how many packets per second a client should receive. Anything above that is silently dropped. To disable set 0, default is 20. Safe to disable if DNS server is not available from internet.
    * `ratelimit_whitelist` — If you want exclude some IP addresses from ratelimiting but keep ratelimiting on for others, put them here.
    * `refuse_any` — Another DDoS protection mechanism. Requests of type ANY are rarely needed, so refusing to serve them mitigates against attackers trying to use your DNS as a reflection. Safe to disable if DNS server is not available from internet.
-   * `bootstrap_dns` — List of DNS servers used for initial hostname resolution in case if upstream server name is a hostname.
-   * `all_servers` — Enables parallel queries to all configured upstream servers to speed up resolving. If disabled, the queries are sent to each upstream server alternately and then sorted by RTT.
+   * `bootstrap_dns` — List of DNS servers used for initial hostname resolution in case an upstream server name is a hostname.
+   * `all_servers` — Enables parallel queries to all configured upstream servers to speed up resolving. If disabled, the queries are sent to each upstream server one-by-one and then sorted by RTT.
    * `parental_sensitivity` — Age group for parental control-based filtering, must be either 3, 10, 13 or 17 if enabled.
    * `parental_enabled` — Parental control-based DNS requests filtering.
    * `safesearch_enabled` — Enforcing "Safe search" option for search engines, when possible.