Removed spaces
This commit is contained in:
parent
4f0394811d
commit
bc38408c78
1 changed files with 5 additions and 5 deletions
|
|
@ -28,15 +28,15 @@ Variables declarations should be ordered by type. In general, object and complex
|
||||||
## Bad code
|
## Bad code
|
||||||
|
|
||||||
```al
|
```al
|
||||||
StartingDateFilter : Text;
|
StartingDateFilter: Text;
|
||||||
Vendor : Record Vendor;
|
Vendor: Record Vendor;
|
||||||
```
|
```
|
||||||
|
|
||||||
## Good code
|
## Good code
|
||||||
|
|
||||||
```al
|
```al
|
||||||
Vendor : Record Vendor;
|
Vendor: Record Vendor;
|
||||||
StartingDateFilter : Text;
|
StartingDateFilter: Text;
|
||||||
```
|
```
|
||||||
|
|
||||||
## [Discussions](https://github.com/microsoft/alguidelines/discussions/categories/bc-best-practices?discussions_q=one+variables+declarations+order+category%3A%22BC+Best+Practices%22)
|
## [Discussions](https://github.com/microsoft/alguidelines/discussions/categories/bc-best-practices?discussions_q=one+variables+declarations+order+category%3A%22BC+Best+Practices%22)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue