diff options
author | Gautham B A <gautham.bangalore@gmail.com> | 2018-05-31 21:47:34 +0530 |
---|---|---|
committer | Wouter van Oortmerssen <aardappel@gmail.com> | 2018-05-31 09:17:34 -0700 |
commit | 348fcb5b88fa807397f417760a2e54675ad4a1af (patch) | |
tree | ecbf118478de24f57449d5e3ce2ea70cdf23d0d6 /docs | |
parent | b4ca4d3cdea7dbfb78342514151a495b451a7f6f (diff) | |
download | flatbuffers-348fcb5b88fa807397f417760a2e54675ad4a1af.tar.gz flatbuffers-348fcb5b88fa807397f417760a2e54675ad4a1af.tar.bz2 flatbuffers-348fcb5b88fa807397f417760a2e54675ad4a1af.zip |
Fix typo in tutorial for Go (#4756)
Fixed a typo in serialising the inventory for Orc.
Diffstat (limited to 'docs')
-rw-r--r-- | docs/source/Tutorial.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/source/Tutorial.md b/docs/source/Tutorial.md index 1424e82c..59901cef 100644 --- a/docs/source/Tutorial.md +++ b/docs/source/Tutorial.md @@ -768,7 +768,7 @@ traversal. This is generally easy to do on any tree structures. for i := 9; i >= 0; i-- { builder.PrependByte(byte(i)) } - int := builder.EndVector(10) + inv := builder.EndVector(10) ~~~ </div> <div class="language-python"> |