Documentation changes to clarify FlatBuffer internals.

Change-Id: I3759a07385f0d8d172ca2f88ac1759b71bee5a6a
This commit is contained in:
Wouter van Oortmerssen
2014-06-17 17:48:06 -07:00
parent 41a6d35e74
commit 66de19ace8
4 changed files with 21 additions and 19 deletions

View File

@@ -88,8 +88,7 @@ Builtin scalar types are:
- 64 bit: `long ulong double`
- Vector of any other type (denoted with `[type]`). Nesting vectors
require you wrap the inner vector in a struct/table rather than
writing `[[type]]`.
is not supported, instead you can wrap the inner vector in a table.
- `string`, which may only hold UTF-8 or 7-bit ASCII. For other text encodings
or general binary data use vectors (`[byte]` or `[ubyte]`) instead.