Skip to content

Commit 0cfbf4d

Browse files
committed
website: use lists throughout the docs instead of array
1 parent 6fadebc commit 0cfbf4d

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

website/source/docs/configuration/syntax.html.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ Basic bullet point reference:
6565

6666
* Boolean values: `true`, `false`, `on`, `off`, `yes`, `no`.
6767

68-
* Arrays of primitive types can be made by wrapping it in `[]`.
68+
* Lists of primitive types can be made by wrapping it in `[]`.
6969
Example: `["foo", "bar", 42]`.
7070

7171
* Maps can be made with the `{}` syntax:
@@ -91,7 +91,7 @@ variable = [{
9191
```
9292

9393
Notice how the top stanza visually looks a lot better? By repeating
94-
multiple `variable` sections, it builds up the `variable` array. When
94+
multiple `variable` sections, it builds up the `variable` list. When
9595
possible, use sections since they're visually clearer and more readable.
9696

9797
## JSON Syntax

website/source/docs/providers/mailgun/r/domain.html.markdown

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,12 +43,12 @@ The following attributes are exported:
4343
* `smtp_password` - The password to the SMTP server.
4444
* `wildcard` - Whether or not the domain will accept email for sub-domains.
4545
* `spam_action` - The spam filtering setting.
46-
* `receiving_records` - An array of DNS records for receiving validation.
46+
* `receiving_records` - A list of DNS records for receiving validation.
4747
* `priority` - The priority of the record.
4848
* `record_type` - The record type.
4949
* `valid` - `"valid"` if the record is valid.
5050
* `value` - The value of the record.
51-
* `sending_records` - An array of DNS records for sending validation.
51+
* `sending_records` - A list of DNS records for sending validation.
5252
* `name` - The name of the record.
5353
* `record_type` - The record type.
5454
* `valid` - `"valid"` if the record is valid.

0 commit comments

Comments
 (0)