Skip to content

Commit 6c71602

Browse files
committed
chore: update test file
1 parent cdf6471 commit 6c71602

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

test/repository-syntax.jsona

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,24 +19,24 @@
1919

2020
nullValue: /* xyz */ null,
2121
boolTrue: true,
22-
boolFale: false,
22+
boolFalse: false,
2323
float: 3.14,
2424
floatNegative: -3.14,
2525
floatNegativeWithoutInteger: -.14,
2626
floatNegativeWithoutDecimal: -3.,
2727
integer: 3,
2828
hex: 0x1a,
2929
binary: 0b01,
30-
otcal: 0o12,
30+
octal: 0o12,
3131
integerNegative: -3,
3232
stringSingleQuota: 'abc "def" ghi',
3333
stringDoubleQuota: "abc 'def' ghi",
3434
stringBacktick: `abc
3535
def \`
3636
xyz`,
37-
stringEscaple1: '\0\b\f\n\r\t\u000b\'\\\xA9\u00A9\u{2F804}',
38-
stringEscaple2: "\0\b\f\n\r\t\u000b\'\\\xA9\u00A9\u{2F804}",
39-
stringEscaple3: `\0\b\f\n\r\t\u000b\'\\\xA9\u00A9\u{2F804}`,
37+
stringEscape1: '\0\b\f\n\r\t\u000b\'\\\xA9\u00A9\u{2F804}',
38+
stringEscape2: "\0\b\f\n\r\t\u000b\'\\\xA9\u00A9\u{2F804}",
39+
stringEscape3: `\0\b\f\n\r\t\u000b\'\\\xA9\u00A9\u{2F804}`,
4040
arrayEmpty: [],
4141
arrayEmptyMultiLine: [ @array
4242
],
@@ -45,7 +45,7 @@ xyz`,
4545
"a", @upper
4646
"b",
4747
],
48-
arrayOneline: ["a", "b"], @array
48+
arrayOnline: ["a", "b"], @array
4949
arrayExtraComma: ["a", "b",],
5050
objectEmpty: {},
5151
objectEmptyMultiLine: { @object

0 commit comments

Comments
 (0)