aboutsummaryrefslogtreecommitdiffstats
path: root/integration/intellij/src
diff options
context:
space:
mode:
authorJon Bratseth <bratseth@gmail.com>2022-04-07 15:07:04 +0200
committerJon Bratseth <bratseth@gmail.com>2022-04-07 15:07:04 +0200
commitfac065affc2d04e4b927e98a732b046fa73b43cf (patch)
treebe49e600826bc03584ce4b97076dcfdfe7cbfedf /integration/intellij/src
parent80fb04701abab984b773f438ff998312becf8d50 (diff)
No colon between name and type
Diffstat (limited to 'integration/intellij/src')
-rw-r--r--integration/intellij/src/main/bnf/ai/vespa/intellij/schema/parser/sd.bnf2
1 files changed, 1 insertions, 1 deletions
diff --git a/integration/intellij/src/main/bnf/ai/vespa/intellij/schema/parser/sd.bnf b/integration/intellij/src/main/bnf/ai/vespa/intellij/schema/parser/sd.bnf
index e945ed4fe0d..952e73edb66 100644
--- a/integration/intellij/src/main/bnf/ai/vespa/intellij/schema/parser/sd.bnf
+++ b/integration/intellij/src/main/bnf/ai/vespa/intellij/schema/parser/sd.bnf
@@ -185,7 +185,7 @@ private NumSearchPartitionDefinition ::= num-search-partition ':' INTEGER_REG
FieldWeightDefinition ::= weight DottedIdentifiers ':' INTEGER_REG
StrictDefinition ::= strict ':' (true | false)
InputsDefinition ::= inputs '{' InputsBody '}'
-InputsBody ::= (QueryDefinition ':' TensorType)*
+InputsBody ::= (QueryDefinition TensorType)*
FirstPhaseDefinition ::= first-phase '{' FirstPhaseBody '}' { mixin="ai.vespa.intellij.schema.psi.impl.SdFirstPhaseDefinitionMixin" }
FirstPhaseBody ::= FirstPhaseBodyOptions* // Does not support zero-or-one occurrences