summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorPure White <wu.purewhite@gmail.com>2019-10-09 05:59:10 +0800
committerDuru Can Celasun <dcelasun@apache.org>2019-10-08 22:59:10 +0100
commitd4c6b5632ffd4792a89d845592aa953573173f8f (patch)
tree1c010f1fa5e2b4db51f211826ae0789290738a66 /doc
parentcaf8904913172b8ed37374a91751d36f404adcee (diff)
downloadthrift-d4c6b5632ffd4792a89d845592aa953573173f8f.tar.gz
Fix typo in IDL specs
This closes #1880.
Diffstat (limited to 'doc')
-rw-r--r--doc/specs/idl.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/specs/idl.md b/doc/specs/idl.md
index ac3536819..9439bee4e 100644
--- a/doc/specs/idl.md
+++ b/doc/specs/idl.md
@@ -126,7 +126,7 @@ Because of this behaviour, required fields drastically limit the options with re
- Read: Optional fields may, or may not be part of the input stream.
- Default values: are written when the isset flag is set
-Most language implementations use the recommended pratice of so-called "isset" flags to indicate whether a particular optional field is set or not. Only fields with this flag set are written, and conversely the flag is only set when a field value has been read from the input stream.
+Most language implementations use the recommended practice of so-called "isset" flags to indicate whether a particular optional field is set or not. Only fields with this flag set are written, and conversely the flag is only set when a field value has been read from the input stream.
#### default requiredness (implicit)