diff --git a/content/BCBestPractices/Readability/variable-naming/index.md b/content/BCBestPractices/Readability/variable-naming/index.md index 858d973b..6ac4d757 100644 --- a/content/BCBestPractices/Readability/variable-naming/index.md +++ b/content/BCBestPractices/Readability/variable-naming/index.md @@ -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. \ No newline at end of file +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.