Commit 348fcb5b authored by Gautham B A's avatar Gautham B A Committed by Wouter van Oortmerssen

Fix typo in tutorial for Go (#4756)

Fixed a typo in serialising the inventory for Orc.
parent b4ca4d3c
...@@ -768,7 +768,7 @@ traversal. This is generally easy to do on any tree structures. ...@@ -768,7 +768,7 @@ traversal. This is generally easy to do on any tree structures.
for i := 9; i >= 0; i-- { for i := 9; i >= 0; i-- {
builder.PrependByte(byte(i)) builder.PrependByte(byte(i))
} }
int := builder.EndVector(10) inv := builder.EndVector(10)
~~~ ~~~
</div> </div>
<div class="language-python"> <div class="language-python">
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment