File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change 19
19
20
20
nullValue: /* xyz */ null,
21
21
boolTrue: true,
22
- boolFale : false,
22
+ boolFalse : false,
23
23
float: 3.14,
24
24
floatNegative: -3.14,
25
25
floatNegativeWithoutInteger: -.14,
26
26
floatNegativeWithoutDecimal: -3.,
27
27
integer: 3,
28
28
hex: 0x1a,
29
29
binary: 0b01,
30
- otcal : 0o12,
30
+ octal : 0o12,
31
31
integerNegative: -3,
32
32
stringSingleQuota: 'abc "def" ghi',
33
33
stringDoubleQuota: "abc 'def' ghi",
34
34
stringBacktick: `abc
35
35
def \`
36
36
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}`,
40
40
arrayEmpty: [],
41
41
arrayEmptyMultiLine: [ @array
42
42
],
45
45
"a", @upper
46
46
"b",
47
47
],
48
- arrayOneline : ["a", "b"], @array
48
+ arrayOnline : ["a", "b"], @array
49
49
arrayExtraComma: ["a", "b",],
50
50
objectEmpty: {},
51
51
objectEmptyMultiLine: { @object
You can’t perform that action at this time.
0 commit comments