Index: CODING_STANDARDS.html =================================================================== RCS file: /cvs/drupal-contrib/contributions/CODING_STANDARDS.html,v retrieving revision 1.14 diff -u -p -r1.14 CODING_STANDARDS.html --- CODING_STANDARDS.html 19 Feb 2008 03:36:41 -0000 1.14 +++ CODING_STANDARDS.html 11 Aug 2008 11:45:05 -0000 @@ -158,7 +158,7 @@ systems and setups.

Note that as of Drupal 4.7, the ?> at the end of code files (modules, includes, etc.) is purposely omitted. The full discussion that led -to this decision is available from the +to this decision is available from the no ?> needed at the end of modules discussion on the drupal-devel mailing list, but can be summarized as:

@@ -252,7 +252,7 @@ $this->_status

Class Names

Though classes are rarely used in Drupal, their name should use - "studlyCaps." For example:

+ "lowerCamelCase." For example:

 $type = new stdClass();