From bc38408c78367f47f8dcb3fbf939e99471116653 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stefan=20Maro=C5=84?= Date: Wed, 15 Dec 2021 08:02:08 +0100 Subject: [PATCH] Removed spaces --- .../Readability/variables-declarations-order/index.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/content/BCBestPractices/Readability/variables-declarations-order/index.md b/content/BCBestPractices/Readability/variables-declarations-order/index.md index d5b47167..7ec97cc5 100644 --- a/content/BCBestPractices/Readability/variables-declarations-order/index.md +++ b/content/BCBestPractices/Readability/variables-declarations-order/index.md @@ -28,19 +28,19 @@ Variables declarations should be ordered by type. In general, object and complex ## Bad code ```al - StartingDateFilter : Text; - Vendor : Record Vendor; + StartingDateFilter: Text; + Vendor: Record Vendor; ``` ## Good code ```al - Vendor : Record Vendor; - StartingDateFilter : Text; + Vendor: Record Vendor; + 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) 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.