alguidelines/content/NAVPatterns/comments-spacing/index.md
2021-10-22 00:23:03 +02:00

14 lines
245 B
Markdown

+++
title = "comments-spacing.md"
weight = 360
+++
Always start comments with // followed by one space character.
Bad code
RowNo += 1000; //Move way below the budget
Good code
RowNo += 1000; // Move way below the budget