alguidelines/content/NAVPatterns/binary-operator-line-start/index.md
2021-10-22 00:23:03 +02:00

15 lines
256 B
Markdown

+++
title = "binary-operator-line-start.md"
weight = 250
+++
Do not start a line with a binary operator. Bad code
"Quantity to Ship" :=
Quantity
- "Quantity Shipped"
Good code
"Quantity to Ship" :=
Quantity -
"Quantity Shipped"