Browse Source

ipfs-cap2pfs: Remove trailing comma from blob JSON

It's not valid JSON to have a comma as the last token in an object or
list.
W. Trevor King 11 years ago
parent
commit
ce77dfe5c4
1 changed files with 1 additions and 1 deletions
  1. 1 1
      papers/ipfs-cap2pfs/ipfs-cap2pfs.tex

+ 1 - 1
papers/ipfs-cap2pfs/ipfs-cap2pfs.tex

@@ -740,7 +740,7 @@ represents a file. IPFS Blocks are like Git blobs or filesystem data blocks. The
 
 \begin{verbatim}
 {
-  "data": "some data here",
+  "data": "some data here"
   // blobs have no links
 }
 \end{verbatim}