From 9b7917e4848e4ebcdcf29c6468d231f2f4c5c9f2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stefan=20Maro=C5=84?= Date: Wed, 15 Dec 2021 08:05:45 +0100 Subject: [PATCH] Space after comma --- content/BCBestPractices/Readability/named-invocations/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/BCBestPractices/Readability/named-invocations/index.md b/content/BCBestPractices/Readability/named-invocations/index.md index a4088e5f..e6c2ae03 100644 --- a/content/BCBestPractices/Readability/named-invocations/index.md +++ b/content/BCBestPractices/Readability/named-invocations/index.md @@ -11,7 +11,7 @@ When calling an object statically use the Object Name, not the Object Id. ## Bad code ```al - Page.RunModal(525,SalesShptLine); + Page.RunModal(525, SalesShptLine); ``` ## Good code