aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorDan Douglas <ddouglas@ebay.com>2017-11-16 16:03:16 -0800
committerWouter van Oortmerssen <aardappel@gmail.com>2017-11-16 16:03:16 -0800
commitfe483fa380299f32a2cb8e990ec8d9dff34dd977 (patch)
tree9238a0bcbad9e399a10b6ff1acdf0dd27b396edb /docs
parent8a8dc4e111af0e93ab1a4cf58a57977e64ca465e (diff)
downloadflatbuffers-fe483fa380299f32a2cb8e990ec8d9dff34dd977.tar.gz
fix typo (#4495)
`Equipment` is a union, not an enum.
Diffstat (limited to 'docs')
-rw-r--r--docs/source/Tutorial.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/source/Tutorial.md b/docs/source/Tutorial.md
index a1eea12c..7def2188 100644
--- a/docs/source/Tutorial.md
+++ b/docs/source/Tutorial.md
@@ -210,7 +210,7 @@ The `Weapon` table is a sub-table used within our FlatBuffer. It is
used twice: once within the `Monster` table and once within the `Equipment`
enum. For our `Monster`, it is used to populate a `vector of tables` via the
`weapons` field within our `Monster`. It is also the only table referenced by
-the `Equipment` enum.
+the `Equipment` union.
The last part of the `schema` is the `root_type`. The root type declares what
will be the root table for the serialized data. In our case, the root type is