We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3afb282 commit bb268bfCopy full SHA for bb268bf
docs/source/tutorial.md
@@ -2056,7 +2056,7 @@ functions to get the root object given the buffer.
2056
```c++
2057
uint8_t *buffer_pointer = /* the data you just read */;
2058
2059
- // Get an view to the root object inside the buffer.
+ // Get a view to the root object inside the buffer.
2060
Monster monster = GetMonster(buffer_pointer);
2061
```
2062
@@ -2076,7 +2076,7 @@ functions to get the root object given the buffer.
2076
```c#
2077
byte[] bytes = /* the data you just read */
2078
2079
2080
Monster monster = Monster.GetRootAsMonster(new ByteBuffer(bytes));
2081
2082
0 commit comments