Skip to content

Commit 7ff8ee4

Browse files
committed
Manually fix multi-document in.json files (yaml#19)
1 parent bb490c6 commit 7ff8ee4

File tree

10 files changed

+19
-83
lines changed

10 files changed

+19
-83
lines changed

35KP/in.json

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
{
2-
"a": "b"
3-
}
4-
[
5-
"c"
6-
]
1+
{ "a": "b" }
2+
[ "c" ]
73
"d e"

6ZKB/in.json

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
11
"Document"
22
null
3-
{
4-
"matches %": 20
5-
}
3+
{ "matches %": 20 }

7Z25/in.json

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,2 @@
11
"scalar1"
2-
{
3-
"key": "value"
4-
}
2+
{ "key": "value" }

9DXL/in.json

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
{
2-
"Mapping": "Document"
3-
}
1+
{ "Mapping": "Document" }
42
null
5-
{
6-
"matches %": 20
7-
}
3+
{ "matches %": 20 }

9KAX/in.json

Lines changed: 4 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,8 @@
11
"scalar1"
22
"scalar2"
33
"scalar3"
4-
{
5-
"key5": "value4"
6-
}
7-
{
8-
"a6": 1,
9-
"b6": 2
10-
}
11-
{
12-
"key8": "value7"
13-
}
14-
{
15-
"key10": "value9"
16-
}
4+
{ "key5": "value4" }
5+
{ "a6": 1, "b6": 2 }
6+
{ "key8": "value7" }
7+
{ "key10": "value9" }
178
"value11"

JHB9/in.json

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,2 @@
1-
[
2-
"Mark McGwire",
3-
"Sammy Sosa",
4-
"Ken Griffey"
5-
]
6-
[
7-
"Chicago Cubs",
8-
"St Louis Cardinals"
9-
]
1+
[ "Mark McGwire", "Sammy Sosa", "Ken Griffey" ]
2+
[ "Chicago Cubs", "St Louis Cardinals" ]

PUW8/in.json

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,2 @@
1-
{
2-
"a": "b"
3-
}
1+
{ "a": "b" }
42
null

RZT7/in.json

Lines changed: 3 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,3 @@
1-
{
2-
"Time": "2001-11-23 15:01:42 -5",
3-
"User": "ed",
4-
"Warning": "This is an error message for the log file"
5-
}
6-
{
7-
"Time": "2001-11-23 15:02:31 -5",
8-
"User": "ed",
9-
"Warning": "A slightly different error message."
10-
}
11-
{
12-
"Date": "2001-11-23 15:03:17 -5",
13-
"User": "ed",
14-
"Fatal": "Unknown variable \"bar\"",
15-
"Stack": [
16-
{
17-
"file": "TopClass.py",
18-
"line": 23,
19-
"code": "x = MoreObject(\"345\\n\")\n"
20-
},
21-
{
22-
"file": "MoreClass.py",
23-
"line": 58,
24-
"code": "foo = bar"
25-
}
26-
]
27-
}
1+
{ "Time": "2001-11-23 15:01:42 -5", "User": "ed", "Warning": "This is an error message for the log file" }
2+
{ "Time": "2001-11-23 15:02:31 -5", "User": "ed", "Warning": "A slightly different error message." }
3+
{ "Date": "2001-11-23 15:03:17 -5", "User": "ed", "Fatal": "Unknown variable \"bar\"", "Stack": [ { "file": "TopClass.py", "line": 23, "code": "x = MoreObject(\"345\\n\")\n" }, { "file": "MoreClass.py", "line": 58, "code": "foo = bar" } ] }

U9NS/in.json

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,2 @@
1-
{
2-
"time": "20:03:20",
3-
"player": "Sammy Sosa",
4-
"action": "strike (miss)"
5-
}
6-
{
7-
"time": "20:03:47",
8-
"player": "Sammy Sosa",
9-
"action": "grand slam"
10-
}
1+
{ "time": "20:03:20", "player": "Sammy Sosa", "action": "strike (miss)" }
2+
{ "time": "20:03:47", "player": "Sammy Sosa", "action": "grand slam" }

UT92/in.json

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,2 @@
1-
{
2-
"matches %": 20
3-
}
1+
{ "matches %": 20 }
42
null

0 commit comments

Comments
 (0)