Skip to content

Commit

Permalink
A couple of small updates to the docs (#8477)
Browse files Browse the repository at this point in the history
* Mention uint8 as an alias to ubyte

as it's referenced in the note below

* Remove an unfinished sentence.
  • Loading branch information
srinarasi authored Jan 10, 2025
1 parent 2b0ce37 commit 086097f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/source/evolution.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion docs/source/schema.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`) |
Expand Down

0 comments on commit 086097f

Please sign in to comment.