formatted \[ to [ and \] to ]

This commit is contained in:
christianbraeunlich 2022-02-05 19:55:53 +01:00
parent 2fc21159de
commit b426977b42
15 changed files with 87 additions and 87 deletions

View file

@ -7,7 +7,7 @@ Declare Text Constant as global variables.
Bad code
```al
PROCEDURE GetRequirementText@6(...) : Text\[50\];
PROCEDURE GetRequirementText@6(...) : Text[50];
VAR
RequirementOptionsTxt@1002 : TextConst 'ENU=Shipment,Receive,Pick,Put-Away';
BEGIN
@ -19,6 +19,6 @@ Good code
VAR
RequirementOptionsTxt@1002 : TextConst 'ENU=Shipment,Receive,Pick,Put-Away';
...
PROCEDURE GetRequirementText@6(...) : Text\[50\];
PROCEDURE GetRequirementText@6(...) : Text[50];
BEGIN
```

View file

@ -2,7 +2,7 @@
title = "Spacing Brackets and ::"
weight = 1130
+++
There must be no spaces characters before and after \[\] dimension brackets symbols or :: option symbols.
There must be no spaces characters before and after [] dimension brackets symbols or :: option symbols.
Bad code