Skip to content

Commit

Permalink
Manually fix multi-document in.json files (yaml#19)
Browse files Browse the repository at this point in the history
  • Loading branch information
eemeli committed May 9, 2020
1 parent b57e39e commit 71875ea
Show file tree
Hide file tree
Showing 10 changed files with 19 additions and 83 deletions.
8 changes: 2 additions & 6 deletions 35KP/in.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
{
"a": "b"
}
[
"c"
]
{ "a": "b" }
[ "c" ]
"d e"
4 changes: 1 addition & 3 deletions 6ZKB/in.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
"Document"
null
{
"matches %": 20
}
{ "matches %": 20 }
4 changes: 1 addition & 3 deletions 7Z25/in.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,2 @@
"scalar1"
{
"key": "value"
}
{ "key": "value" }
8 changes: 2 additions & 6 deletions 9DXL/in.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
{
"Mapping": "Document"
}
{ "Mapping": "Document" }
null
{
"matches %": 20
}
{ "matches %": 20 }
17 changes: 4 additions & 13 deletions 9KAX/in.json
Original file line number Diff line number Diff line change
@@ -1,17 +1,8 @@
"scalar1"
"scalar2"
"scalar3"
{
"key5": "value4"
}
{
"a6": 1,
"b6": 2
}
{
"key8": "value7"
}
{
"key10": "value9"
}
{ "key5": "value4" }
{ "a6": 1, "b6": 2 }
{ "key8": "value7" }
{ "key10": "value9" }
"value11"
11 changes: 2 additions & 9 deletions JHB9/in.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,2 @@
[
"Mark McGwire",
"Sammy Sosa",
"Ken Griffey"
]
[
"Chicago Cubs",
"St Louis Cardinals"
]
[ "Mark McGwire", "Sammy Sosa", "Ken Griffey" ]
[ "Chicago Cubs", "St Louis Cardinals" ]
4 changes: 1 addition & 3 deletions PUW8/in.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,2 @@
{
"a": "b"
}
{ "a": "b" }
null
30 changes: 3 additions & 27 deletions RZT7/in.json
Original file line number Diff line number Diff line change
@@ -1,27 +1,3 @@
{
"Time": "2001-11-23 15:01:42 -5",
"User": "ed",
"Warning": "This is an error message for the log file"
}
{
"Time": "2001-11-23 15:02:31 -5",
"User": "ed",
"Warning": "A slightly different error message."
}
{
"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"
}
]
}
{ "Time": "2001-11-23 15:01:42 -5", "User": "ed", "Warning": "This is an error message for the log file" }
{ "Time": "2001-11-23 15:02:31 -5", "User": "ed", "Warning": "A slightly different error message." }
{ "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" } ] }
12 changes: 2 additions & 10 deletions U9NS/in.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,2 @@
{
"time": "20:03:20",
"player": "Sammy Sosa",
"action": "strike (miss)"
}
{
"time": "20:03:47",
"player": "Sammy Sosa",
"action": "grand slam"
}
{ "time": "20:03:20", "player": "Sammy Sosa", "action": "strike (miss)" }
{ "time": "20:03:47", "player": "Sammy Sosa", "action": "grand slam" }
4 changes: 1 addition & 3 deletions UT92/in.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,2 @@
{
"matches %": 20
}
{ "matches %": 20 }
null

0 comments on commit 71875ea

Please sign in to comment.