Skip to content

Commit f0709a3

Browse files
committed
docs: Fix spelling issues
1 parent b543287 commit f0709a3

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

SECURITY.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@ When a major version is incremented, we'll support the previous major version fo
1212

1313
To report a vulnerability please [create a new GitHub "issue"](https://github.com/StackExchange/dnscontrol/issues/new/choose).
1414

15-
We will respond in a best-effort manner, usually within 1 week. We will communciate via the GitHub issue unless we need to communicate privately, in which case we'll arrange a way to communicate directly.
15+
We will respond in a best-effort manner, usually within 1 week. We will communicate via the GitHub issue unless we need to communicate privately, in which case we'll arrange a way to communicate directly.

documentation/advanced-features/nameservers.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ D("example.com", REG_NONE,
9595
Suppose you don't want to manage a domain, but you want to list the zone in
9696
your `dnsconfig.js` file for inventory purposes. For example, suppose there are
9797
domains that some other part of your company maintains, but you want to list it
98-
in your `dnsconfig.js` because it is authoratative for the company.
98+
in your `dnsconfig.js` because it is authoritative for the company.
9999

100100
```javascript
101101
var REG_NONE = NewRegistrar("none");

documentation/advanced-features/ordering.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,11 @@ D('example.com', REG_NONE, DnsProvider(DNS_BIND),
3535

3636
The re-ordering feature can be disabled using the `--disableordering` global flag (it goes before `preview` or `push`). While the code has been extensively tested, it is new and you may still find a bug. This flag leaves the updates unordered and may require multiple `push` runs to complete the update.
3737

38-
If you encounter any issues with the reordering please [open an issue](https://github.com/StackExchange/dnscontrol/issues).
38+
If you encounter any issues with the reordering please [open an issue](https://github.com/StackExchange/dnscontrol/issues).
3939

4040
## Internals
4141

42-
DNSControl sorts all changes based on the dependencies within these changes. Each record define it's dependencies in `models.Record`. For DNSControl it doesn't matter of a CNAME's target is an A or AAAA or TXT, it will ensure all changes on the target get sorted before the depending CNAME record. The creation of the graph happens in `dnsgraph.CreateGraph([]Graphable)` and thereafter the sorting happens in `graphsort.SortUsingGraph([]Graphable)`.
43-
The Graphable is an interface to make the sorting module more seperate from the rest of the DNSControl code, currently the only Graphable implementation is `diff2.Change`.
42+
DNSControl sorts all changes based on the dependencies within these changes. Each record define it's dependencies in `models.Record`. For DNSControl it doesn't matter of a CNAME's target is an A or AAAA or TXT, it will ensure all changes on the target get sorted before the depending CNAME record. The creation of the graph happens in `dnsgraph.CreateGraph([]Graphable)` and thereafter the sorting happens in `graphsort.SortUsingGraph([]Graphable)`.
43+
The Graphable is an interface to make the sorting module more separate from the rest of the DNSControl code, currently the only Graphable implementation is `diff2.Change`.
4444

45-
In order to add a new sortable rtype one should add it to the `models.Record.GetGetDependencies()` and return the dependent records, this is used inside the `diff2.Change` to detect if a depdency is backwards (dependent on the old state) or forward (dependent on new state). Now the new rtype should be sorted accordingly just like MX and CNAME records.
45+
In order to add a new sortable rtype one should add it to the `models.Record.GetGetDependencies()` and return the dependent records, this is used inside the `diff2.Change` to detect if a dependency is backwards (dependent on the old state) or forward (dependent on new state). Now the new rtype should be sorted accordingly just like MX and CNAME records.

documentation/language-reference/domain-modifiers/DKIM_BUILDER.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ k2._domainkey.subdomain IN TXT "v=DKIM1; h=sha1:sha256; k=rsa; n=some=20human
9292
* `ed25519`
9393
* `notes` (string, optional): Human-readable notes intended for administrators. Pass normal text here; DKIM-Quoted-Printable encoding will be applied automatically. Maps to the `n=` tag.
9494
* `servicetypes` (array, optional): Service types using this key. Maps to the `s=` tag. Supported values:
95-
* `*`: explicity allows all service types
95+
* `*`: explicitly allows all service types
9696
* `email`: restricts key to email service only
9797
* `flags` (array, optional): Flags to modify the interpretation of the selector. Maps to the `t=` tag. Supported values:
9898
* `y`: Testing mode.

0 commit comments

Comments
 (0)