This is an automated email from the ASF dual-hosted git repository.
mgrigorov pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/avro.git
The following commit(s) were added to refs/heads/main by this push:
new 8864d48b9 Correct size in uuid example with fixed type (#3030)
8864d48b9 is described below
commit 8864d48b9644b5bf03e0bfc3465b17836c93992f
Author: Andrew Martin <[email protected]>
AuthorDate: Sat Jul 20 00:37:31 2024 -0400
Correct size in uuid example with fixed type (#3030)
---
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 2994c6d77..75eda7b7f 100755
--- a/doc/content/en/docs/++version++/Specification/_index.md
+++ b/doc/content/en/docs/++version++/Specification/_index.md
@@ -842,7 +842,7 @@ The following schemas represent a uuid:
```json
{
"type": "fixed",
- "size": "16",
+ "size": 16,
"logicalType": "uuid"
}
```