From 4f0394811d74491b409070f9972ad72cdc051271 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stefan=20Maro=C5=84?= Date: Wed, 15 Dec 2021 08:00:19 +0100 Subject: [PATCH] removed spaces --- .../Readability/variable-naming/index.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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.