Binary Operator to Start Line
Categories:
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"
Last modified February 24, 2022: Added tags & categories + cleanup (5ee04366)
by waldo1001