From 086097ff94c2470d50f51f6e0762a26e43b34a88 Mon Sep 17 00:00:00 2001 From: Bhargava Srinarasi Date: Fri, 10 Jan 2025 20:02:09 +0100 Subject: [PATCH] A couple of small updates to the docs (#8477) * Mention uint8 as an alias to ubyte as it's referenced in the note below * Remove an unfinished sentence. --- docs/source/evolution.md | 2 +- docs/source/schema.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/source/evolution.md b/docs/source/evolution.md index 4b8093d74..32f34a1aa 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 diff --git a/docs/source/schema.md b/docs/source/schema.md index 3bb441479..a72d9ed0d 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`) |