Show
Ignore:
Timestamp:
09/19/10 02:19:11 (2 years ago)
Author:
walter
Message:

fix stomping of dstyle.dd

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/docsrc/dstyle.dd

    r2040 r2041  
    103103    <dd>Names formed by joining multiple words should have each word 
    104104    other than the first capitalized. 
    105     Names shall not begin with an underscore $(SINGLEQUOTE _)
     105    Names shall not begin with an underscore $(SINGLEQUOTE _) unless they are private member variables
    106106 
    107107------------------------------- 
     
    131131------------------------------- 
    132132    ) 
     133    $(DD An exception is that eponymous templates that return a value instead of a type should not be   
     134    capitalized, as they are conceptually more similar to functions.   
     135 
     136-------------------------   
     137template GetSomeType(T) {}   
     138template isSomeType(T) {}   
     139-------------------------   
     140    )   
    133141 
    134142    $(DT Function names) 
     
    141149    ) 
    142150 
     151$(V1 
    143152    $(DT Const names) 
    144153    $(DD Are in all caps.) 
    145  
     154
    146155    $(DT Enum member names) 
    147     $(DD Are in all caps.) 
     156    $(DD Are in lowerCamelCase.) 
    148157 
    149158)