diff --git a/bundles/org.eclipse.vorto.editor.datatype/src/org/eclipse/vorto/editor/datatype/Datatype.xtext b/bundles/org.eclipse.vorto.editor.datatype/src/org/eclipse/vorto/editor/datatype/Datatype.xtext index 39da405314..a713c28d5a 100644 --- a/bundles/org.eclipse.vorto.editor.datatype/src/org/eclipse/vorto/editor/datatype/Datatype.xtext +++ b/bundles/org.eclipse.vorto.editor.datatype/src/org/eclipse/vorto/editor/datatype/Datatype.xtext @@ -116,7 +116,7 @@ ComplexPrimitivePropertyType: ; DictionaryPropertyType: - {DictionaryPropertyType} 'Dictionary' ('[' keyType = PropertyType ',' valueType = PropertyType ']')? + {DictionaryPropertyType} 'dictionary' ('[' keyType = PropertyType ',' valueType = PropertyType ']')? ; enum PrimitiveType: string = 'string' | int = 'int' | float = 'float' | boolean = 'boolean' | datetime = 'dateTime' | double = 'double' | long = 'long' | short = 'short' | base64Binary ='base64Binary' | byte = 'byte';