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