Commit 3ec43f055a8aa623187799d160f8642f497f21f4

Authored by Jay Berkenbilt
1 parent a3037ca4

Fix parsing comment

Showing 1 changed file with 6 additions and 3 deletions
libqpdf/QPDF_json.cc
... ... @@ -14,8 +14,11 @@
14 14  
15 15 // | st_initial
16 16 // { | -> st_top
17   -// "qpdf-v2": { | -> st_qpdf
18   -// "objects": { | -> st_objects
  17 +// "qpdf": [ | -> st_qpdf
  18 +// { | -> st_qpdf_meta
  19 +// ... | ...
  20 +// }, | ...
  21 +// { | -> st_objects
19 22 // "obj:1 0 R": { | -> st_object_top
20 23 // "value": { | -> st_object
21 24 // "/Pages": "2 0 R", | ...
... ... @@ -41,7 +44,7 @@
41 44 // } | <- st_trailer
42 45 // } | <- st_objects
43 46 // } | <- st_qpdf
44   -// } | <- st_top
  47 +// ] | <- st_top
45 48 // } | <- st_initial
46 49  
47 50 static char const* JSON_PDF = (
... ...