Fixed typo in Java/C# tutorial.

Change-Id: I956b27f37b11988e67d0403a596c0569eacbfc2a
parent 3a2f6d53
......@@ -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">
......
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