From 0de6d15d69e80827ee08928749dac0d73b3f280c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stefan=20Maro=C5=84?= Date: Wed, 15 Dec 2021 08:03:19 +0100 Subject: [PATCH] spaces after commas --- content/BCBestPractices/Readability/begin-end/index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/BCBestPractices/Readability/begin-end/index.md b/content/BCBestPractices/Readability/begin-end/index.md index 41b2aeda..a2bcf372 100644 --- a/content/BCBestPractices/Readability/begin-end/index.md +++ b/content/BCBestPractices/Readability/begin-end/index.md @@ -30,7 +30,7 @@ if FindSet() then ```AL if IsAssemblyOutputLine then begin - TestField("Order Line No.",0); + TestField("Order Line No.", 0); end; ``` @@ -38,7 +38,7 @@ end; ```AL if IsAssemblyOutputLine then - TestField("Order Line No.",0); + TestField("Order Line No.", 0); ``` ## Exception