Changes between Version 7 and Version 8 of HowToSubmitAPatch
- Timestamp:
- 10/14/08 04:57:05 (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
HowToSubmitAPatch
v7 v8 55 55 # helper for matching between a range of chars 56 56 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]') 57 68 }}} 58 69