The batch api example json is missing some braces

This commit is contained in:
rubyist 2015-05-29 11:21:15 -04:00
parent 47f735098b
commit 2ce0189b09

@ -295,21 +295,23 @@ with `git config lfs.batch true`.
<
< {
< "objects": [
< "oid": "1111111",
< "_links": {
< "upload": {
< "href": "https://some-upload.com",
< "header": {
< "Key": "value"
< }
< },
< "verify": {
< "href": "https://some-callback.com",
< "header": {
< "Key": "value"
< {
< "oid": "1111111",
< "_links": {
< "upload": {
< "href": "https://some-upload.com",
< "header": {
< "Key": "value"
< }
< },
< "verify": {
< "href": "https://some-callback.com",
< "header": {
< "Key": "value"
< }
< }
< }
< }
> }
< ]
< }
```