Changes between Version 4 and Version 5 of CodeDoc
- Timestamp:
- 07/10/14 14:23:53 (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
CodeDoc
v4 v5 134 134 135 135 You can suppress (all) warnings generated for a particular line with a 136 trailing comment starting with the tag '''.no warnings.''' (note leading and trailing '.').[[br]]136 trailing comment starting with the tag '''.no-warnings.''' (note leading and trailing '.').[[br]] 137 137 Any subsequent text after the tag is ignored. 138 138 {{{ 139 139 #!cobra 140 140 # Normally this would warn with a suggestion to remove the trailing () 141 callMe() # .no warnings. I like explicit () for this call141 callMe() # .no-warnings. I like explicit () for this call 142 142 }}} 143 143