added indentation

This commit is contained in:
christianbraeunlich 2022-03-19 22:11:52 +01:00
parent 4fbfc28c9e
commit 83053e7287
6 changed files with 22 additions and 24 deletions

View file

@ -8,20 +8,20 @@ _Created by Microsoft, Described by waldo_
## Description
Do not start a line with a binary operator.
Do not start a line with a binary operator.
## Bad code
```AL
"Quantity to Ship" :=
Quantity
- "Quantity Shipped"
Quantity
- "Quantity Shipped"
```
## Good code
```AL
"Quantity to Ship" :=
Quantity -
"Quantity Shipped"
Quantity -
"Quantity Shipped"
```