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 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`) |