• Use a single space between function name and opening parenthesis
    This facilitates easy selections within both Windows and Macintosh when double-clicking to highlight

    Function Name ( with; parameters )

    good

    Function Name(with; parameters)

    bad

  • (optional) Remove the space between each argument and it's trailing semicolon
    This increases readability by reducing excessive spacing

    Function Name ( with; parameters )

    good

    Function Name ( with ; parameters )

    bad