diff options
Diffstat (limited to 'frontend/syntax.icl')
-rw-r--r-- | frontend/syntax.icl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/frontend/syntax.icl b/frontend/syntax.icl index 7093137..6a7aeaf 100644 --- a/frontend/syntax.icl +++ b/frontend/syntax.icl @@ -517,7 +517,7 @@ where instance <<< FieldNameOrQualifiedFieldName where (<<<) file (FieldName ident) = file <<< ident - (<<<) file (QualifiedFieldName module_ident field_name) = file <<< module_ident <<< '@' <<< field_name + (<<<) file (QualifiedFieldName module_ident field_name) = file <<< '.' <<< module_ident <<< "'." <<< field_name instance <<< CaseAlt where |