From 8bbfe01ede00f092dddb3aa58d84c35905d717af Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stefan=20Maro=C5=84?= Date: Wed, 15 Dec 2021 07:56:09 +0100 Subject: [PATCH] sadly, exit with () does not compile --- .../BCBestPractices/Readability/one-statement-per-line/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; ```