From 348fcb5b88fa807397f417760a2e54675ad4a1af Mon Sep 17 00:00:00 2001 From: Gautham B A Date: Thu, 31 May 2018 21:47:34 +0530 Subject: [PATCH] Fix typo in tutorial for Go (#4756) Fixed a typo in serialising the inventory for Orc. --- docs/source/Tutorial.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/Tutorial.md b/docs/source/Tutorial.md index 1424e82ce..59901ceff 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) ~~~