This is an automated email from the ASF dual-hosted git repository.
mgrigorov pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/avro.git
The following commit(s) were added to refs/heads/master by this push:
new 84d0a005d Fix invalid JSON in spec (#2100)
84d0a005d is described below
commit 84d0a005d0d9586b8387c3364a285146200f8342
Author: Spencer Nelson <[email protected]>
AuthorDate: Thu Feb 16 00:20:17 2023 -0800
Fix invalid JSON in spec (#2100)
Dangling commas are not permitted in JSON. This fixes that error in the
Object Container Format header type definition.
---
doc/content/en/docs/++version++/Specification/_index.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/doc/content/en/docs/++version++/Specification/_index.md
b/doc/content/en/docs/++version++/Specification/_index.md
index 6b28010ad..c6716466d 100755
--- a/doc/content/en/docs/++version++/Specification/_index.md
+++ b/doc/content/en/docs/++version++/Specification/_index.md
@@ -460,7 +460,7 @@ A file header is thus described by the following schema:
"fields" : [
{"name": "magic", "type": {"type": "fixed", "name": "Magic", "size": 4}},
{"name": "meta", "type": {"type": "map", "values": "bytes"}},
- {"name": "sync", "type": {"type": "fixed", "name": "Sync", "size": 16}},
+ {"name": "sync", "type": {"type": "fixed", "name": "Sync", "size": 16}}
]
}
```