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,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)