This is an automated email from the ASF dual-hosted git repository.
mgrigorov pushed a commit to branch branch-1.11
in repository https://gitbox.apache.org/repos/asf/avro.git
The following commit(s) were added to refs/heads/branch-1.11 by this push:
new 6b81066b8 Fix invalid JSON in spec (#2100)
6b81066b8 is described below
commit 6b81066b8a5e3b648a1c20b598e2b9f90942631f
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.
(cherry picked from commit 84d0a005d0d9586b8387c3364a285146200f8342)
---
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}}
]
}
```