Update style guide with rule on whitespace.

This commit is contained in:
Paul Romano 2017-01-05 11:24:58 -06:00
parent 254eb6148e
commit c407dc0259

View file

@ -153,6 +153,9 @@ Avoid extraneous whitespace in the following situations:
Yes: if (variable == 2) then
No: if ( variable==2 ) then
The structure component designator ``%`` should be surrounded by one space on
each side.
Do not leave trailing whitespace at the end of a line.
------