Skip to content

Commit 527549a

Browse files
committed
Suggestion: power operator should not be separated #28
1 parent c6f0d1b commit 527549a

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

resources/settings/MBeautyConfigurationRules.m

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,11 +82,11 @@
8282

8383
this.OperatorRules.ElementWisePower = struct();
8484
this.OperatorRules.ElementWisePower.ValueFrom = '\.\^';
85-
this.OperatorRules.ElementWisePower.ValueTo = ' \.\^ ';
85+
this.OperatorRules.ElementWisePower.ValueTo = '\.\^';
8686

8787
this.OperatorRules.Power = struct();
8888
this.OperatorRules.Power.ValueFrom = '\^';
89-
this.OperatorRules.Power.ValueTo = ' \^ ';
89+
this.OperatorRules.Power.ValueTo = '\^';
9090

9191
this.OperatorRules.Not = struct();
9292
this.OperatorRules.Not.ValueFrom = '~';

resources/settings/MBeautyConfigurationRules.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,12 +99,12 @@
9999
<OperatorPaddingRule>
100100
<Key>ElementWisePower</Key>
101101
<ValueFrom>.^</ValueFrom>
102-
<ValueTo> .^ </ValueTo>
102+
<ValueTo>.^</ValueTo>
103103
</OperatorPaddingRule>
104104
<OperatorPaddingRule>
105105
<Key>Power</Key>
106106
<ValueFrom>^</ValueFrom>
107-
<ValueTo> ^ </ValueTo>
107+
<ValueTo>^</ValueTo>
108108
</OperatorPaddingRule>
109109
<OperatorPaddingRule>
110110
<Key>Not</Key>

0 commit comments

Comments
 (0)