ensure that the sample JSON definition file is proper JSON

This commit is contained in:
Travis 2017-06-01 15:52:56 -05:00
parent c2e18b251d
commit ed8bf2ecac
No known key found for this signature in database
GPG key ID: 7F08008DFD9314C9

View file

@ -92,27 +92,27 @@ pdk.BitMapper{
These same objects are represented in the JSON definition file:
```go
{
"Fields": [
"Trip_distance": 10,
]
"Mappers": [
"Fields": {
"Trip_distance": 10
},
"Mappers": [
{
"Name": "lfm0",
"Min": -0.5,
"Max": 3600.5,
"Res": 3600
},
}
],
"BitMappers": [
{
"Frame": "dist_miles",
"Mapper": {
"Name": "lfm0"
},
},
"Parsers": [
{"Name": "FloatParser"}
],
"Fields": "Trip_distance",
"Fields": "Trip_distance"
}
]
}