Fix typo in tutorial for Go (#4756)

Fixed a typo in serialising the inventory for Orc.
This commit is contained in:
Gautham B A
2018-05-31 21:47:34 +05:30
committed by Wouter van Oortmerssen
parent b4ca4d3cde
commit 348fcb5b88

View File

@@ -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">