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