diff --git a/content/BCBestPractices/Readability/unnecessary-else/index.md b/content/BCBestPractices/Readability/unnecessary-else/index.md index ffad9056..ee900d0a 100644 --- a/content/BCBestPractices/Readability/unnecessary-else/index.md +++ b/content/BCBestPractices/Readability/unnecessary-else/index.md @@ -14,9 +14,9 @@ weight = 1270 procedure SomeProcedure() begin if IsAdjmtBinCodeChanged() then - Error(AdjmtBinCodeChangeNotAllowedErr,...) + Error(AdjmtBinCodeChangeNotAllowedErr, ...) else - Error(BinCodeChangeNotAllowedErr,...); + Error(BinCodeChangeNotAllowedErr, ...); end; ``` @@ -25,8 +25,8 @@ weight = 1270 procedure SomeProcedure() begin if IsAdjmtBinCodeChanged() then - Error(AdjmtBinCodeChangeNotAllowedErr,...) - Error(BinCodeChangeNotAllowedErr,...); + Error(AdjmtBinCodeChangeNotAllowedErr, ...) + Error(BinCodeChangeNotAllowedErr, ...); end; ```