Skip to content

Commit aedd86a

Browse files
committed
change apostrophes and quotes according to our editorial policy, make link texts descriptive
1 parent b30ee0e commit aedd86a

38 files changed

+124
-124
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,14 +57,14 @@ This command generates static content into the `build` directory and can be serv
5757

5858
Translations are not pushed to the repo and prepared on-the-fly (`i18n` folder is added to `.gitignore`).
5959

60-
Here's how you can debug translations locally.
60+
Heres how you can debug translations locally.
6161

6262
1. Download translations: `CROWDIN_PERSONAL_TOKEN="YOURTOKEN" pnpm run crowdin download`
6363
2. Run Docusaurus with the language of your choice: `pnpm run start -- --locale de`
6464

6565
## How to generate DNS stamps
6666

67-
If you'd like to update the list of [known DNS Providers](https://github.com/AdguardTeam/KnowledgeBaseDNS/blob/master/docs/general/dns-providers.md), you'll need to know how to create and check DNS stamps. Read the brief tutorial below to learn how to do it.
67+
If youd like to update the list of [known DNS Providers](https://github.com/AdguardTeam/KnowledgeBaseDNS/blob/master/docs/general/dns-providers.md), youll need to know how to create and check DNS stamps. Read the brief tutorial below to learn how to do it.
6868

6969
### For DNS-over-HTTPS
7070

docs/adguard-home/faq.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -298,7 +298,7 @@ DOMAIN {
298298

299299
:::note
300300

301-
Do not use subdirectories with the Apache reverse HTTP proxy. It's a known issue ([#6604]) that Apache handles relative redirects differently than other web servers. This causes problems with the AdGuard Home web interface.
301+
Do not use subdirectories with the Apache reverse HTTP proxy. Its a known issue ([#6604]) that Apache handles relative redirects differently than other web servers. This causes problems with the AdGuard Home web interface.
302302

303303
[#6604]: https://github.com/AdguardTeam/AdGuardHome/issues/6604
304304

docs/dns-client/overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ Supported CPU architectures:
3939

4040
:::caution
4141

42-
On macOS, it's crucial that globally installed daemons are owned by `root` (see the [`launchd` documentation][launchd-requirements]), so the `AdGuardDNSClient` executable must be placed in the `/Applications/` directory or its subdirectory.
42+
On macOS, its crucial that globally installed daemons are owned by `root` (see the [`launchd` documentation][launchd-requirements]), so the `AdGuardDNSClient` executable must be placed in the `/Applications/` directory or its subdirectory.
4343

4444
:::
4545

docs/general/dns-filtering-syntax.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ If you are creating a blocklist, we recommend using the [Adblock-style syntax].
3434

3535
- **Extensibility.** In the past decade, the Adblock-style syntax has greatly evolved, and we see no reason not to extend it even further and offer additional features for network-level blockers.
3636

37-
If you're maintaining either a `/etc/hosts`-style blocklist or multiple filtering lists (regardless of type), we provide a tool for blocklist compilation. We named it [Hostlist compiler] and we use it ourselves to create [AdGuard DNS filter].
37+
If youre maintaining either a `/etc/hosts`-style blocklist or multiple filtering lists (regardless of type), we provide a tool for blocklist compilation. We named it [Hostlist compiler] and we use it ourselves to create [AdGuard DNS filter].
3838

3939
## Basic examples {#basic-examples}
4040

@@ -80,7 +80,7 @@ modifiers = [modifier0, modifier1[, ...[, modifierN]]]
8080

8181
- `||`: matches the beginning of a hostname, including any subdomain. For instance, `||example.org` matches `example.org` and `test.example.org` but not `testexample.org`.
8282

83-
- `^`: the separator character. Unlike browser ad blocking, there's nothing to separate in a hostname, so the only purpose of this character is to mark the end of the hostname.
83+
- `^`: the separator character. Unlike browser ad blocking, theres nothing to separate in a hostname, so the only purpose of this character is to mark the end of the hostname.
8484

8585
- `|`: a pointer to the beginning or the end of the hostname. The value depends on the character placement in the mask. For example, the rule `ample.org|` corresponds to `example.org` but not to `example.org.com`. `|example` corresponds to `example.org` but not to `test.example`.
8686

@@ -129,7 +129,7 @@ You can change the behavior of a rule by adding modifiers. Modifiers must be loc
129129

130130
`||example.org^` is the matching pattern. `$` is the delimiter, which signals that the rest of the rule are modifiers. `client=127.0.0.1` is the [`client`] modifier with its value, `127.0.0.1`. `,` is the delimiter between modifiers. And finally, `dnstype=A` is the [`dnstype`] modifier with its value, `A`.
131131

132-
**NOTE:** If a rule contains a modifier not listed in this document, the whole rule **must be ignored**. This way we avoid false-positives when people are trying to use unmodified browser ad blockers' filter lists like EasyList or EasyPrivacy.
132+
**NOTE:** If a rule contains a modifier not listed in this document, the whole rule **must be ignored**. This way we avoid false-positives when people are trying to use unmodified browser ad blockers filter lists like EasyList or EasyPrivacy.
133133

134134
#### `client` {#client-modifier}
135135

@@ -147,7 +147,7 @@ The syntax is:
147147
$client=value1|value2|...
148148
```
149149

150-
You can also exclude clients by adding a `~` character before the value. In this case, the rule is not be applied to this client's DNS requests.
150+
You can also exclude clients by adding a `~` character before the value. In this case, the rule is not be applied to this clients DNS requests.
151151

152152
```none
153153
$client=~value1
@@ -190,7 +190,7 @@ This modifier allows avoiding creating unnecessary exception rules when our bloc
190190
@@||net^
191191
```
192192

193-
The problem with this approach is that this way you will also unblock tracking domains that are located on those TLDs (i.e. `google-analytics.com`). Here's how to solve this with `denyallow`:
193+
The problem with this approach is that this way you will also unblock tracking domains that are located on those TLDs (i.e. `google-analytics.com`). Heres how to solve this with `denyallow`:
194194

195195
```none
196196
*$denyallow=com|net
@@ -202,7 +202,7 @@ The problem with this approach is that this way you will also unblock tracking d
202202

203203
- `@@*$denyallow=com|net`: unblock everything except for `*.com` and `*.net`.
204204

205-
- `||example.org^$denyallow=sub.example.org`. block `example.org` and `*.example.org` but don't block `sub.example.org`.
205+
- `||example.org^$denyallow=sub.example.org`. block `example.org` and `*.example.org` but dont block `sub.example.org`.
206206

207207
#### `dnstype` {#dnstype-modifier}
208208

@@ -259,7 +259,7 @@ The `dnsrewrite` response modifier allows replacing the content of the response
259259

260260
**Rules with the `dnsrewrite` response modifier have higher priority than other rules in AdGuard Home and AdGuard DNS.**
261261

262-
Responses to all requests for a host matching a `dnsrewrite` rule will be replaced. The answer section of the replacement response will only contain RRs that match the request's query type and, possibly, CNAME RRs. Note that this means that responses to some requests may become empty (`NODATA`) if the host matches a `dnsrewrite` rule.
262+
Responses to all requests for a host matching a `dnsrewrite` rule will be replaced. The answer section of the replacement response will only contain RRs that match the requests query type and, possibly, CNAME RRs. Note that this means that responses to some requests may become empty (`NODATA`) if the host matches a `dnsrewrite` rule.
263263

264264
The shorthand syntax is:
265265

@@ -307,7 +307,7 @@ Name: example.net
307307
Address: 1.2.3.4
308308
```
309309

310-
Next, the `CNAME` rewrite. After that, all other records' values are summed as one response, so this:
310+
Next, the `CNAME` rewrite. After that, all other records values are summed as one response, so this:
311311

312312
```none
313313
||example.com^$dnsrewrite=NOERROR;A;1.2.3.4
@@ -400,7 +400,7 @@ The rules with the `badfilter` modifier disable other basic rules to which they
400400

401401
- `@@||example.org^$badfilter` disables `@@||example.org^`.
402402

403-
**NOTE:** The `badfilter` modifier currently doesn't work with `/etc/hosts`-style rules. `127.0.0.1 example.org$badfilter` will **not** disable the original `127.0.0.1 example.org` rule.
403+
**NOTE:** The `badfilter` modifier currently doesnt work with `/etc/hosts`-style rules. `127.0.0.1 example.org$badfilter` will **not** disable the original `127.0.0.1 example.org` rule.
404404

405405
#### `ctag` {#ctag-modifier}
406406

@@ -414,13 +414,13 @@ The syntax is:
414414
$ctag=value1|value2|...
415415
```
416416

417-
If one of client's tags matches the `ctag` values, this rule applies to the client. The syntax for exclusion is:
417+
If one of clients tags matches the `ctag` values, this rule applies to the client. The syntax for exclusion is:
418418

419419
```none
420420
$ctag=~value1|~value2|...
421421
```
422422

423-
If one of client's tags matches the exclusion `ctag` values, this rule doesn't apply to the client.
423+
If one of clients tags matches the exclusion `ctag` values, this rule doesnt apply to the client.
424424

425425
**Examples:**
426426

@@ -503,11 +503,11 @@ consider it to be an [Adblock-style syntax] rule.
503503

504504
If you are maintaining a blocklist and use different sources in it, [Hostlist compiler] may be useful to you. It is a simple tool that makes it easier to compile a hosts blocklist compatible with AdGuard Home, Private AdGuard DNS or any other AdGuard product with DNS filtering.
505505

506-
What it's capable of:
506+
What its capable of:
507507

508508
1. Compile a single blocklist from multiple sources.
509509

510-
2. Exclude the rules you don't need.
510+
2. Exclude the rules you dont need.
511511

512512
3. Cleanup the resulting list: deduplicate, remove invalid rules, and compress the list.
513513

0 commit comments

Comments
 (0)