Removed spaces
This commit is contained in:
parent
4f0394811d
commit
bc38408c78
1 changed files with 5 additions and 5 deletions
|
|
@ -28,19 +28,19 @@ Variables declarations should be ordered by type. In general, object and complex
|
|||
## Bad code
|
||||
|
||||
```al
|
||||
StartingDateFilter : Text;
|
||||
Vendor : Record Vendor;
|
||||
StartingDateFilter: Text;
|
||||
Vendor: Record Vendor;
|
||||
```
|
||||
|
||||
## Good code
|
||||
|
||||
```al
|
||||
Vendor : Record Vendor;
|
||||
StartingDateFilter : Text;
|
||||
Vendor: Record Vendor;
|
||||
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)
|
||||
|
||||
You can find discussions on all "Best Practices" [here](https://github.com/microsoft/alguidelines/discussions/categories/bc-best-practices).
|
||||
|
||||
If you don't find the discussion of this guideline, please feel fee to create a new one with the same title as this article.
|
||||
If you don't find the discussion of this guideline, please feel fee to create a new one with the same title as this article.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue