Forbid trailing whitespace in the style guide

This commit is contained in:
Sterling Harper 2015-08-02 12:24:06 -06:00
parent a8b3a0b2cd
commit 4ded3a39e1

View file

@ -153,6 +153,8 @@ Avoid extraneous whitespace in the following situations:
Yes: if (variable == 2) then
No: if ( variable==2 ) then
Do not leave trailing whitespace at the end of a line.
------
Python
------