Skip to content

Commit

Permalink
Suggestion: power operator should not be separated #28
Browse files Browse the repository at this point in the history
  • Loading branch information
davidvarga committed Nov 18, 2016
1 parent c6f0d1b commit 527549a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions resources/settings/MBeautyConfigurationRules.m
Original file line number Diff line number Diff line change
Expand Up @@ -82,11 +82,11 @@

this.OperatorRules.ElementWisePower = struct();
this.OperatorRules.ElementWisePower.ValueFrom = '\.\^';
this.OperatorRules.ElementWisePower.ValueTo = ' \.\^ ';
this.OperatorRules.ElementWisePower.ValueTo = '\.\^';

this.OperatorRules.Power = struct();
this.OperatorRules.Power.ValueFrom = '\^';
this.OperatorRules.Power.ValueTo = ' \^ ';
this.OperatorRules.Power.ValueTo = '\^';

this.OperatorRules.Not = struct();
this.OperatorRules.Not.ValueFrom = '~';
Expand Down
4 changes: 2 additions & 2 deletions resources/settings/MBeautyConfigurationRules.xml
Original file line number Diff line number Diff line change
Expand Up @@ -99,12 +99,12 @@
<OperatorPaddingRule>
<Key>ElementWisePower</Key>
<ValueFrom>.^</ValueFrom>
<ValueTo> .^ </ValueTo>
<ValueTo>.^</ValueTo>
</OperatorPaddingRule>
<OperatorPaddingRule>
<Key>Power</Key>
<ValueFrom>^</ValueFrom>
<ValueTo> ^ </ValueTo>
<ValueTo>^</ValueTo>
</OperatorPaddingRule>
<OperatorPaddingRule>
<Key>Not</Key>
Expand Down

0 comments on commit 527549a

Please sign in to comment.