Restructure for Docsy theme

This commit is contained in:
Jeremy Vyska 2022-02-20 13:18:49 +01:00
parent f4a1ebc077
commit cceb0c945e
376 changed files with 963 additions and 186 deletions

View file

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