Index: includes/database/database.inc =================================================================== RCS file: /cvs/drupal/drupal/includes/database/database.inc,v retrieving revision 1.141 diff -u -r1.141 database.inc --- includes/database/database.inc 15 Oct 2010 18:03:43 -0000 1.141 +++ includes/database/database.inc 22 Oct 2010 14:49:10 -0000 @@ -1732,21 +1732,19 @@ } /** - * A prepared statement. + * Represents a prepared statement. * - * Some methods in that class are purposely commented out. Due to a change in + * Some methods in this class are purposefully commented out. Due to a change in * how PHP defines PDOStatement, we can't define a signature for those methods * that will work the same way between versions older than 5.2.6 and later - * versions. - * - * Please refer to http://bugs.php.net/bug.php?id=42452 for more details. + * versions. See http://bugs.php.net/bug.php?id=42452 for more details. * * Child implementations should either extend PDOStatement: * @code * class DatabaseStatement_oracle extends PDOStatement implements DatabaseStatementInterface {} * @endcode - * or implement their own class, but in that case they will also have to - * implement the Iterator or IteratorArray interfaces before + * or define their own class. If defining their own class, they will also have + * to implement either the Iterator or IteratorAggregate interface before * DatabaseStatementInterface: * @code * class DatabaseStatement_oracle implements Iterator, DatabaseStatementInterface {}