diff options
author | David Rothstein <drothstein@gmail.com> | 2015-10-14 15:30:14 -0400 |
---|---|---|
committer | David Rothstein <drothstein@gmail.com> | 2015-10-14 15:30:14 -0400 |
commit | 7933ac459dd752a07896aa7f8b8073020df7e0fc (patch) | |
tree | f795d996047994f5cb317340266f1fc48d0813c3 /includes | |
parent | e8353656924be31725e6293f411d5413c5966eb1 (diff) | |
download | brdo-7933ac459dd752a07896aa7f8b8073020df7e0fc.tar.gz brdo-7933ac459dd752a07896aa7f8b8073020df7e0fc.tar.bz2 |
Issue #2488750 by lalweil: Typo in DatabaseConnection::query
Diffstat (limited to 'includes')
-rw-r--r-- | includes/database/database.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/database/database.inc b/includes/database/database.inc index 3d776b573..90a3f7434 100644 --- a/includes/database/database.inc +++ b/includes/database/database.inc @@ -656,7 +656,7 @@ abstract class DatabaseConnection extends PDO { * @return DatabaseStatementInterface * This method will return one of: the executed statement, the number of * rows affected by the query (not the number matched), or the generated - * insert IT of the last query, depending on the value of + * insert ID of the last query, depending on the value of * $options['return']. Typically that value will be set by default or a * query builder and should not be set by a user. If there is an error, * this method will return NULL and may throw an exception if |