aboutsummaryrefslogtreecommitdiffstats
path: root/subprojects/frontend/src/language/indentation.ts
diff options
context:
space:
mode:
Diffstat (limited to 'subprojects/frontend/src/language/indentation.ts')
-rw-r--r--subprojects/frontend/src/language/indentation.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/subprojects/frontend/src/language/indentation.ts b/subprojects/frontend/src/language/indentation.ts
index 55dcd7f1..1c38637f 100644
--- a/subprojects/frontend/src/language/indentation.ts
+++ b/subprojects/frontend/src/language/indentation.ts
@@ -80,8 +80,8 @@ export function indentPredicateOrRule(context: TreeIndentContext): number {
80 if (/^\s+[;.]/.exec(context.textAfter) !== null) { 80 if (/^\s+[;.]/.exec(context.textAfter) !== null) {
81 return clauseIndent - 2; 81 return clauseIndent - 2;
82 } 82 }
83 if (/^\s+(~>)/.exec(context.textAfter) !== null) { 83 if (/^\s+(==>)/.exec(context.textAfter) !== null) {
84 return clauseIndent - 3; 84 return clauseIndent - 4;
85 } 85 }
86 return clauseIndent; 86 return clauseIndent;
87} 87}