aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorGautham B A <gautham.bangalore@gmail.com>2018-05-31 21:47:34 +0530
committerWouter van Oortmerssen <aardappel@gmail.com>2018-05-31 09:17:34 -0700
commit348fcb5b88fa807397f417760a2e54675ad4a1af (patch)
treeecbf118478de24f57449d5e3ce2ea70cdf23d0d6 /docs
parentb4ca4d3cdea7dbfb78342514151a495b451a7f6f (diff)
downloadflatbuffers-348fcb5b88fa807397f417760a2e54675ad4a1af.tar.gz
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.md2
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">