Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading