Comment Spacing
Categories:
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
Last modified September 22, 2023: Merge pull request #234 from microsoft/TheDoubleH-patch-2 (6659139)
by Henrik Helgesen