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 ## Bad code
```al ```al
WIPBuffer : Record "Job WIP Buffer" WIPBuffer: Record "Job WIP Buffer"
``` ```
## Good code ## Good code
```al ```al
JobWIPBuffer : Record "Job WIP Buffer" JobWIPBuffer: Record "Job WIP Buffer"
``` ```
## Bad code ## Bad code
```al ```al
Postline : Codeunit "Gen. Jnl.-Post Line"; Postline: Codeunit "Gen. Jnl.-Post Line";
``` ```
## Good code ## Good code
```al ```al
GenJnlPostLine : Codeunit "Gen. Jnl.-Post Line"; GenJnlPostLine: Codeunit "Gen. Jnl.-Post Line";
``` ```
## Bad code ## Bad code
```al ```al