alguidelines/content/NAVPatterns/unary-operator-line-end/index.md
2021-10-30 20:44:07 +02:00

14 lines
251 B
Markdown

+++
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)");