formatted nav patterns 2 to 4

This commit is contained in:
christianbraeunlich 2022-02-05 19:44:44 +01:00
parent 2fad891a77
commit f1f4aab1d7
55 changed files with 788 additions and 506 deletions

View file

@ -3,36 +3,44 @@ title = "Spacing Brackets and ::"
weight = 1130
+++
There must be no spaces characters before and after \[\] dimension brackets symbols or :: option symbols.
Bad code
A\[i\] \[j\] := Amt;
```al
A[i] [j] := Amt;
```
Good code
A\[i\]\[j\] := Amt;
```al
A[i][j] := Amt;
```
Bad code
"Currency Exchange Rate"."Fix Exchange Rate Amount" :: Currency:
```al
"Currency Exchange Rate"."Fix Exchange Rate Amount" :: Currency:
```
Good code
"Currency Exchange Rate"."Fix Exchange Rate Amount"::Currency:
```al
"Currency Exchange Rate"."Fix Exchange Rate Amount"::Currency:
```
Bad code
IF FIND (Which) THEN
```al
IF FIND (Which) THEN
```
Good code
IF FIND(Which) THEN
```al
IF FIND(Which) THEN
```