Fixed typo in Java/C# tutorial.

Change-Id: I956b27f37b11988e67d0403a596c0569eacbfc2a
This commit is contained in:
Wouter van Oortmerssen
2018-05-31 09:53:47 -07:00
parent 3a2f6d5300
commit 27ce09860a

View File

@@ -1501,7 +1501,7 @@ like so:
// The number of bytes is buf.remaining().
// Alternatively this copies the above data out of the ByteBuffer for you:
bytes[] buf = builder.sizedByteArray();
byte[] buf = builder.sizedByteArray();
~~~
</div>
<div class="language-csharp">
@@ -1513,7 +1513,7 @@ like so:
// buf.Length - buf.Position.
// Alternatively this copies the above data out of the ByteBuffer for you:
bytes[] buf = builder.SizedByteArray();
byte[] buf = builder.SizedByteArray();
~~~
</div>
<div class="language-go">