diff --git a/content/BCBestPractices/Readability/one-statement-per-line/index.md b/content/BCBestPractices/Readability/one-statement-per-line/index.md index e0bc59e0..c5085b87 100644 --- a/content/BCBestPractices/Readability/one-statement-per-line/index.md +++ b/content/BCBestPractices/Readability/one-statement-per-line/index.md @@ -11,7 +11,7 @@ A line of code should not have more than one statement. ## Bad code ```al - if OppEntry.Find('-') then exit(); + if OppEntry.Find('-') then exit; ```