alguidelines/content/docs/NAVPatterns/3-cal-coding-guidelines/readability/unary-operator-line-end/index.md
2022-02-20 13:18:49 +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)");