Removed spaces

This commit is contained in:
Stefan Maroń 2021-12-15 08:02:08 +01:00 committed by GitHub
parent 4f0394811d
commit bc38408c78
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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.