From f929eadbf969626214fdf8d99c9bc8e9f4d8cd39 Mon Sep 17 00:00:00 2001 From: Tom Limoncelli Date: Thu, 8 Jun 2017 14:14:46 -0400 Subject: [PATCH] Change double to single quotes in examples. --- docs/_functions/domain/DefaultTTL.md | 8 ++++---- docs/_functions/record/TTL.md | 12 ++++++------ docs/examples.md | 6 +++--- 3 files changed, 13 insertions(+), 13 deletions(-) diff --git a/docs/_functions/domain/DefaultTTL.md b/docs/_functions/domain/DefaultTTL.md index 57aaa6072..cac3e861e 100644 --- a/docs/_functions/domain/DefaultTTL.md +++ b/docs/_functions/domain/DefaultTTL.md @@ -10,14 +10,14 @@ it will use the DNSControl global default of 300 seconds. {% include startExample.html %} {% highlight js %} -D("example.com", REGISTRAR, DnsProvider("R53"), +D('example.com', REGISTRAR, DnsProvider('R53'), DefaultTTL(2000), - A("@","1.2.3.4"), // uses default - A("foo", "2.3.4.5", TTL(500)) // overrides default + A('@','1.2.3.4'), // uses default + A('foo', '2.3.4.5', TTL(500)) // overrides default ); {%endhighlight%} The DefaultTTL duration is the same format as [TTL](#TTL): an integer number of seconds -or a string with a unit such as `"4d"`. +or a string with a unit such as `'4d'`. {% include endExample.html %} diff --git a/docs/_functions/record/TTL.md b/docs/_functions/record/TTL.md index 38edb2a6a..b7bf8150f 100644 --- a/docs/_functions/record/TTL.md +++ b/docs/_functions/record/TTL.md @@ -20,17 +20,17 @@ The value can be: * n (nonths) (30 days in a nonth) * y (years) (If you set a TTL to a year, we assume you also do crossword puzzles in pen. Show off!) * If no unit is specified, the default is seconds. - * We highly recommend using units instead of the number of seconds. Would your coworkers understand your intention better if you wrote 14400 or "4h"? + * We highly recommend using units instead of the number of seconds. Would your coworkers understand your intention better if you wrote `14400` or `'4h'`? {% include startExample.html %} {% highlight js %} -D("example.com", REGISTRAR, DnsProvider("R53"), +D('example.com', REGISTRAR, DnsProvider('R53'), DefaultTTL(2000), - A("@","1.2.3.4"), // uses default - A("foo", "2.3.4.5", TTL(500)), // overrides default - A("demo1", "3.4.5.11", TTL("5d")), // 5 days - A("demo2", "3.4.5.12", TTL("5w")), // 5 weeks + A('@','1.2.3.4'), // uses default + A('foo', '2.3.4.5', TTL(500)), // overrides default + A('demo1', '3.4.5.11', TTL('5d')), // 5 days + A('demo2', '3.4.5.12', TTL('5w')), // 5 weeks ); {%endhighlight%} {% include endExample.html %} diff --git a/docs/examples.md b/docs/examples.md index 67ca8d968..4436dfa34 100644 --- a/docs/examples.md +++ b/docs/examples.md @@ -31,9 +31,9 @@ D('example.com', REG, DnsProvider('GCLOUD'), {% highlight javascript %} D('example.com', registrar, - DefaultTTL(400), // Default for a domain - A('@', '1.2.3.4', TTL(400)), // individual record - {'ns_ttl': '400'} // On domain apex NS RRs + DefaultTTL('5m'), // Default for a domain + A('@', '1.2.3.4', TTL('10m')), // individual record + {'ns_ttl': '600'} // On domain apex NS RRs ); {% endhighlight %}