website: use lists throughout the docs instead of array

This commit is contained in:
Emil Hessman 2015-01-14 18:38:08 +01:00
parent 6fadebc5d8
commit 0cfbf4d8d9
2 changed files with 4 additions and 4 deletions

View File

@ -65,7 +65,7 @@ Basic bullet point reference:
* Boolean values: `true`, `false`, `on`, `off`, `yes`, `no`. * Boolean values: `true`, `false`, `on`, `off`, `yes`, `no`.
* Arrays of primitive types can be made by wrapping it in `[]`. * Lists of primitive types can be made by wrapping it in `[]`.
Example: `["foo", "bar", 42]`. Example: `["foo", "bar", 42]`.
* Maps can be made with the `{}` syntax: * Maps can be made with the `{}` syntax:
@ -91,7 +91,7 @@ variable = [{
``` ```
Notice how the top stanza visually looks a lot better? By repeating Notice how the top stanza visually looks a lot better? By repeating
multiple `variable` sections, it builds up the `variable` array. When multiple `variable` sections, it builds up the `variable` list. When
possible, use sections since they're visually clearer and more readable. possible, use sections since they're visually clearer and more readable.
## JSON Syntax ## JSON Syntax

View File

@ -43,12 +43,12 @@ The following attributes are exported:
* `smtp_password` - The password to the SMTP server. * `smtp_password` - The password to the SMTP server.
* `wildcard` - Whether or not the domain will accept email for sub-domains. * `wildcard` - Whether or not the domain will accept email for sub-domains.
* `spam_action` - The spam filtering setting. * `spam_action` - The spam filtering setting.
* `receiving_records` - An array of DNS records for receiving validation. * `receiving_records` - A list of DNS records for receiving validation.
* `priority` - The priority of the record. * `priority` - The priority of the record.
* `record_type` - The record type. * `record_type` - The record type.
* `valid` - `"valid"` if the record is valid. * `valid` - `"valid"` if the record is valid.
* `value` - The value of the record. * `value` - The value of the record.
* `sending_records` - An array of DNS records for sending validation. * `sending_records` - A list of DNS records for sending validation.
* `name` - The name of the record. * `name` - The name of the record.
* `record_type` - The record type. * `record_type` - The record type.
* `valid` - `"valid"` if the record is valid. * `valid` - `"valid"` if the record is valid.