aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorBrian Chavez <bchavez@bitarmory.com>2017-10-09 08:42:34 -0700
committerWouter van Oortmerssen <aardappel@gmail.com>2017-10-09 08:42:34 -0700
commitbc8a1608a84347d4d212a976649d34309610a3c5 (patch)
treeff649c242f482b722e83e704d69b8ebf9666e02d /docs
parent30e7d161049482a8196036e0726fd25227498aa6 (diff)
downloadflatbuffers-bc8a1608a84347d4d212a976649d34309610a3c5.tar.gz
Spelling error in C# and Java documentation (#4454)
Diffstat (limited to 'docs')
-rwxr-xr-xdocs/source/JavaCsharpUsage.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/source/JavaCsharpUsage.md b/docs/source/JavaCsharpUsage.md
index 8f99d3a8..102ce371 100755
--- a/docs/source/JavaCsharpUsage.md
+++ b/docs/source/JavaCsharpUsage.md
@@ -139,7 +139,7 @@ can have fast lookups directly from a FlatBuffer without having to unpack
your data into a `Dictionary` or similar.
To use it:
-- Designate one of the fields in a table as they "key" field. You do this
+- Designate one of the fields in a table as the "key" field. You do this
by setting the `key` attribute on this field, e.g.
`name:string (key)`.
You may only have one key field, and it must be of string or scalar type.