Skip to content

Commit 086097f

Browse files
authored
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.
1 parent 2b0ce37 commit 086097f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/source/evolution.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Older code will simply ignore the new field in the flatbuffer.
2222

2323
!!! tip "Use `id` attributes"
2424

25-
You can ignore this rule if you use the `id` attribute on all the fields of a table. This
25+
You can ignore this rule if you use the `id` attribute on all the fields of a table.
2626

2727
### Removal
2828

docs/source/schema.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ variable sized integers (e.g., `varints`).
209209

210210
| Size | Signed | Unsigned | Floating Point |
211211
| ------ | ----------------- | ------------------- | -------------------- |
212-
| 8-bit | `byte`, `bool` | `ubyte` | |
212+
| 8-bit | `byte`, `bool` | `ubyte` (`uint8`) | |
213213
| 16-bit | `short` (`int16`) | `ushort` (`uint16`) |
214214
| 32-bit | `int` (`int32`) | `uint` (`uint32`) | `float` (`float32`) |
215215
| 64-bit | `long` (`int64`) | `ulong` (`uint64`) | `double` (`float64`) |

0 commit comments

Comments
 (0)