removed spaces

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

View file

@ -17,19 +17,19 @@ If a variable is a compound of two or more words or abbreviations, each word or
## Bad code
```al
WIPBuffer : Record "Job WIP Buffer"
WIPBuffer: Record "Job WIP Buffer"
```
## Good code
```al
JobWIPBuffer : Record "Job WIP Buffer"
JobWIPBuffer: Record "Job WIP Buffer"
```
## Bad code
```al
Postline : Codeunit "Gen. Jnl.-Post Line";
Postline: Codeunit "Gen. Jnl.-Post Line";
```
## Good code
```al
GenJnlPostLine : Codeunit "Gen. Jnl.-Post Line";
GenJnlPostLine: Codeunit "Gen. Jnl.-Post Line";
```
## Bad code
```al
@ -44,4 +44,4 @@ If a variable is a compound of two or more words or abbreviations, each word or
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.