diff options
author | Aaron Goldman <GoldmanAaron@gmail.com> | 2019-04-22 13:35:23 -0700 |
---|---|---|
committer | James E. King III <jking@apache.org> | 2019-05-12 07:22:05 -0400 |
commit | b808a11559644cc385fe403a06ef8c626149b9b1 (patch) | |
tree | 875963e82f2231808b29f6bc40bf440308a1b9e3 /doc/specs | |
parent | ce32ed70124f4213894f2c0cfdb76bf624ce62b6 (diff) | |
download | thrift-b808a11559644cc385fe403a06ef8c626149b9b1.tar.gz |
Make Field definition follow Literal definition
I think this is a violation of your Literal syntax.
Could you explain what i'm missing in the language definition?
Is this supposed to be a litteral '='?
Literal ::= ('"' [^"]* '"') | ("'" [^']* "'")
Diffstat (limited to 'doc/specs')
-rw-r--r-- | doc/specs/idl.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/specs/idl.md b/doc/specs/idl.md index 524f4e72f..ac3536819 100644 --- a/doc/specs/idl.md +++ b/doc/specs/idl.md @@ -96,7 +96,7 @@ A service provides the interface for a set of functionality provided by a Thrift ## Field - [16] Field ::= FieldID? FieldReq? FieldType Identifier ('= ConstValue)? XsdFieldOptions ListSeparator? + [16] Field ::= FieldID? FieldReq? FieldType Identifier ('=' ConstValue)? XsdFieldOptions ListSeparator? ### Field ID |