Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions docs/language/ql-spec/language.rst
Original file line number Diff line number Diff line change
Expand Up @@ -502,7 +502,7 @@ Identifiers are used in following syntactic constructs:
simpleId ::= lowerId | upperId
modulename ::= simpleId
classname ::= upperId
dbasetype ::= atlowerId
dbasetype ::= atLowerId
predicateRef ::= (moduleId "::")? literalId
predicateName ::= lowerId
varname ::= simpleId
Expand Down Expand Up @@ -1804,7 +1804,7 @@ The complete grammar for QL is as follows:

::

ql ::= moduleBody ;
ql ::= moduleBody

module ::= annotation* "module" modulename "{" moduleBody "}"

Expand Down Expand Up @@ -1976,11 +1976,11 @@ The complete grammar for QL is as follows:

simpleId ::= lowerId | upperId

modulename :: = simpleId
modulename ::= simpleId

classname ::= upperId

dbasetype ::= atlowerId
dbasetype ::= atLowerId

predicateRef ::= (moduleId "::")? literalId

Expand Down