Changes between Version 33 and Version 34 of DeveloperGuidelines/CodeConventions


Ignore:
Timestamp:
11/16/13 22:56:31 (11 years ago)
Author:
Dominic König
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • DeveloperGuidelines/CodeConventions

    v33 v34  
    2727- for string constants in !JavaScript use single quotes ' ' - UNLESS the string contains a '
    2828
    29 - for Inline-!JavaScript or JSON inside Python code use ''' '''
    30 - in all other cases of triple-quoted strings (such as docstrings or Inline-XML) use """ """
     29- for Inline-!JavaScript or JSON inside Python code use ' ' '   ' ' '
     30- in all other cases of triple-quoted strings (such as docstrings or Inline-XML) use " " "   " " "
    3131
    3232- for XML/HTML attributes use double quotes " " (inner quotes must be escaped anyway)