alguidelines/content/NAVPatterns/3-cal-coding-guidelines/readability/unary-operator-line-end/index.md
2022-02-05 19:44:44 +01:00

264 B

+++ title = "Unary Operator Line End" weight = 1250 +++ Do not end a line with unary operator.

Bad code

"Quantity Handled (Base)" := -
    "Quantity Handled (Base)");

Good code

"Quantity Handled (Base)" :=
    - "Quantity Handled (Base)");