alguidelines/content/NAVPatterns/3-cal-coding-guidelines/readability/unnecessary-separators/index.md
2022-02-05 19:44:44 +01:00

211 B

+++ title = "Unnecessary Separators" weight = 1290 +++ There should be no unnecessary separators.

Bad code

IF Customer.FINDFIRST THEN;;  

Good code

IF Customer.FINDFIRST THEN;