From 6303b6b67614e4c1efde295a65919c6f500a9efc Mon Sep 17 00:00:00 2001 From: Bhargava Srinarasi Date: Wed, 8 Jan 2025 12:05:12 +0100 Subject: [PATCH 1/2] Mention uint8 as an alias to ubyte as it's referenced in the note below --- docs/source/schema.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/schema.md b/docs/source/schema.md index 3bb44147937..a72d9ed0d0f 100644 --- a/docs/source/schema.md +++ b/docs/source/schema.md @@ -209,7 +209,7 @@ variable sized integers (e.g., `varints`). | Size | Signed | Unsigned | Floating Point | | ------ | ----------------- | ------------------- | -------------------- | -| 8-bit | `byte`, `bool` | `ubyte` | | +| 8-bit | `byte`, `bool` | `ubyte` (`uint8`) | | | 16-bit | `short` (`int16`) | `ushort` (`uint16`) | | 32-bit | `int` (`int32`) | `uint` (`uint32`) | `float` (`float32`) | | 64-bit | `long` (`int64`) | `ulong` (`uint64`) | `double` (`float64`) | From 3c206fdc08cd1d49fa8404b48503de8151e282a9 Mon Sep 17 00:00:00 2001 From: Bhargava Srinarasi Date: Wed, 8 Jan 2025 12:05:58 +0100 Subject: [PATCH 2/2] Remove an unfinished sentence. --- docs/source/evolution.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/evolution.md b/docs/source/evolution.md index 4b8093d74ca..32f34a1aa82 100644 --- a/docs/source/evolution.md +++ b/docs/source/evolution.md @@ -22,7 +22,7 @@ Older code will simply ignore the new field in the flatbuffer. !!! tip "Use `id` attributes" - You can ignore this rule if you use the `id` attribute on all the fields of a table. This + You can ignore this rule if you use the `id` attribute on all the fields of a table. ### Removal