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 5e89ed628 docs(go): fix go serialization doc (#3125)
5e89ed628 is described below
commit 5e89ed6286dba4dc01486869526113ab7e85ed5c
Author: Shawn Yang <[email protected]>
AuthorDate: Mon Jan 12 12:16:56 2026 +0800
docs(go): fix go serialization doc (#3125)
## Why?
## What does this PR do?
## Related issues
#3121
## Does this PR introduce any user-facing change?
- [ ] Does this PR introduce any public API change?
- [ ] Does this PR introduce any binary protocol compatibility change?
## Benchmark
---
docs/guide/go/supported-types.md | 28 ++++++++++++++--------------
1 file changed, 14 insertions(+), 14 deletions(-)
diff --git a/docs/guide/go/supported-types.md b/docs/guide/go/supported-types.md
index 5b68d50c7..9f048e210 100644
--- a/docs/guide/go/supported-types.md
+++ b/docs/guide/go/supported-types.md
@@ -334,20 +334,20 @@ data, _ := f.Serialize(status)
## Cross-Language Type Mapping
-| Go Type | Java | Python | C++ | Rust |
-| --------------- | -------- | --------- | ------------------ | ------------ |
-| `bool` | boolean | bool | bool | bool |
-| `int8` | byte | int | int8_t | i8 |
-| `int16` | short | int | int16_t | i16 |
-| `int32` | int | int | int32_t | i32 |
-| `int64` | long | int | int64_t | i64 |
-| `float32` | float | float | float | f32 |
-| `float64` | double | float | double | f64 |
-| `string` | String | str | std::string | String |
-| `[]T` | List<T> | list | std::vector<T> | Vec<T> |
-| `map[K]V` | Map<K,V> | dict | std::unordered_map | HashMap<K,V> |
-| `time.Time` | Instant | datetime | - | - |
-| `time.Duration` | Duration | timedelta | - | - |
+| Go Type | Java | Python | C++ | Rust
|
+| --------------- | ---------- | --------- | ------------------ |
-------------- |
+| `bool` | boolean | bool | bool | bool
|
+| `int8` | byte | int | int8_t | i8
|
+| `int16` | short | int | int16_t | i16
|
+| `int32` | int | int | int32_t | i32
|
+| `int64` | long | int | int64_t | i64
|
+| `float32` | float | float | float | f32
|
+| `float64` | double | float | double | f64
|
+| `string` | String | str | std::string | String
|
+| `[]T` | `List<T>` | list | `std::vector<T>` | `Vec<T>`
|
+| `map[K]V` | `Map<K,V>` | dict | std::unordered_map |
`HashMap<K,V>` |
+| `time.Time` | Instant | datetime | - | -
|
+| `time.Duration` | Duration | timedelta | - | -
|
See [Cross-Language Serialization](cross-language) for detailed mapping.
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]