Changes between Version 38 and Version 39 of coding_rules
- Timestamp:
- 06/11/21 14:52:26 (4 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
coding_rules
v38 v39 92 92 Classes, functions, and other logical blocks of code should be folded (note the exact formatting used below): 93 93 {{{ 94 #!matlab 94 95 function foo() % {{{ 95 96 [...] … … 139 140 Classes, functions, and other logical blocks of code should be folded (note the exact formatting used below): 140 141 {{{ 142 #!python 141 143 def foo(): # {{{ 142 144 [...]