Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 498b367

Browse files
authoredApr 8, 2020
Merge pull request #20 from moebrowne
JSON Primitive Integers
2 parents f0e0775 + 804c5c3 commit 498b367

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed
 

‎src/6.0/en/check.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@
7474
<title>SizeDiffPreviousPercent JSON example</title>
7575

7676
<programlisting><![CDATA[
77-
{"type": "SizeDiffPreviousPercent", "value": "10"}]]></programlisting>
77+
{"type": "SizeDiffPreviousPercent", "value": 10}]]></programlisting>
7878

7979
</example>
8080

‎src/6.0/en/cleanup.xml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@
219219
<programlisting><![CDATA[{
220220
"type": "quantity",
221221
"options": {
222-
"amount": "20"
222+
"amount": 20
223223
}
224224
}]]></programlisting>
225225
</example>
@@ -315,11 +315,11 @@ backups | ............| . . . . . . . . . | . . . | .
315315
<programlisting><![CDATA[{
316316
"type": "stepwise",
317317
"options": {
318-
"daysToKeepAll": "2",
319-
"daysToKeepDaily": "5",
320-
"weeksToKeepWeekly": "3",
321-
"monthToKeepMonthly": "4",
322-
"yearsToKeepYearly": "10"
318+
"daysToKeepAll": 2,
319+
"daysToKeepDaily": 5,
320+
"weeksToKeepWeekly": 3,
321+
"monthToKeepMonthly": 4,
322+
"yearsToKeepYearly": 10
323323
}
324324
}]]></programlisting>
325325
</example>
@@ -361,7 +361,7 @@ backups | ............| . . . . . . . . . | . . . | .
361361
"token": "mysecrettoken",
362362
"path": "/backups",
363363
"cleanup.type": "quantity",
364-
"cleanup.amount": "10"
364+
"cleanup.amount": 10
365365
}
366366
}]]></programlisting>
367367
</example>

0 commit comments

Comments
 (0)
Failed to load comments.