This is an automated email from the ASF dual-hosted git repository.
chaokunyang pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/fory.git
The following commit(s) were added to refs/heads/main by this push:
new 1fb00549b fix: typo in the xlang_serialization_spec.md (#3151)
1fb00549b is described below
commit 1fb00549b8dc4630c1a3f9d9dd2e59aef5bd1336
Author: Ayush Kumar <[email protected]>
AuthorDate: Thu Jan 15 09:53:44 2026 +0530
fix: typo in the xlang_serialization_spec.md (#3151)
## Why?
Docs -
https://github.com/apache/fory/blob/main/docs/specification/xlang_serialization_spec.md
have a typo in the definition of `bool_array`.
## What does this PR do?
Corrects the definition of `bool_array`
Before
```
- bool_array: one dimensional int16 array.
```
After
```
- bool_array: one dimensional int8 array.
```
## Related issues
No existing Issue, just a PR.
## Does this PR introduce any user-facing change?
No
## Benchmark
N/A just a typo fix
---------
Co-authored-by: Shawn Yang <[email protected]>
---
docs/specification/xlang_serialization_spec.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/docs/specification/xlang_serialization_spec.md
b/docs/specification/xlang_serialization_spec.md
index a48c43d67..23623bd37 100644
--- a/docs/specification/xlang_serialization_spec.md
+++ b/docs/specification/xlang_serialization_spec.md
@@ -76,7 +76,7 @@ This specification defines the Fory xlang binary format. The
format is dynamic r
- binary: an variable-length array of bytes.
- array: only allow 1d numeric components. Other arrays will be taken as List.
The implementation should support the
interoperability between array and list.
- - bool_array: one dimensional int16 array.
+ - bool_array: one dimensional bool array.
- int8_array: one dimensional int8 array.
- int16_array: one dimensional int16 array.
- int32_array: one dimensional int32 array.
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]