diff options
author | mustiikhalil <mustii@mmk.one> | 2021-02-14 10:09:11 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-14 10:09:11 +0300 |
commit | a72a20827226a38a1c46dd3737779ec686330486 (patch) | |
tree | c91ecb33051ec389bbf8872e6d9b8926c74c50d3 /docs/source | |
parent | 86401e078d0746d2381735415f8c2dfe849f3f52 (diff) | |
download | flatbuffers-a72a20827226a38a1c46dd3737779ec686330486.tar.gz flatbuffers-a72a20827226a38a1c46dd3737779ec686330486.tar.bz2 flatbuffers-a72a20827226a38a1c46dd3737779ec686330486.zip |
Update swift docs (#6460)
Diffstat (limited to 'docs/source')
-rw-r--r-- | docs/source/Tutorial.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/source/Tutorial.md b/docs/source/Tutorial.md index 9c842cc4..181c6779 100644 --- a/docs/source/Tutorial.md +++ b/docs/source/Tutorial.md @@ -1434,7 +1434,7 @@ for the `path` field above: for i in obj { _ = create(struct: i) } - let points = fbb.endVectorOfStructs(count: size) + let points = fbb.endVector(len: size) ~~~ </div> |