Wiki

Changes between Version 7 and Version 8 of HowToSubmitAPatch

Show
Ignore:
Timestamp:
10/14/08 04:57:05 (16 years ago)
Author:
Chuck
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • HowToSubmitAPatch

    v7 v8  
    5555    # helper for matching between a range of chars 
    5656    def _matchBetween(input as String, start as char, stopch as char) as String? 
     57 
     58# Comments are usually lower case. 
     59# Avoid random capitalization, random extra spaces and missing spaces. 
     60# good: 
     61    foo.bar  # see test case 100-basics, 400-branch.cobra 
     62# bad: 
     63    foo.bar  # See test  Case 100-basics, 400-branch.cobra 
     64# good: 
     65    .throwError('Cannot find type for "[_name]".[sugg]') 
     66# bad: 
     67    .throwError('Cannot find TypeFor "[_name]".[sugg]') 
    5768}}} 
    5869