Changes between Version 11 and Version 12 of CodingConventionsProposal


Ignore:
Timestamp:
12/25/09 23:11:12 (3 years ago)
Author:
chris
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • CodingConventionsProposal

    v11 v12  
    9292some_function(x, y); 
    9393}}} 
     94 
     95More don'ts: 
     96{{{ 
     97(radarSize>=1) ?radarSize: 1 
     98}}} 
     99 
     100Corrected here: 
     101{{{ 
     102(radarSize >= 1) ? radarSize : 1 
     103}}}