From 02df9cfdfb12908382d9489a58fcf20c0a02453f Mon Sep 17 00:00:00 2001 From: Petr Skoda Date: Fri, 21 May 2010 18:25:59 +0000 Subject: [PATCH] comment typos again --- lib/dml/mssql_native_moodle_recordset.php | 2 +- lib/dml/mssql_native_moodle_temptables.php | 4 ++-- lib/dml/mysqli_native_moodle_database.php | 8 ++++---- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/lib/dml/mssql_native_moodle_recordset.php b/lib/dml/mssql_native_moodle_recordset.php index 6ed25686199..e897d4b63c0 100644 --- a/lib/dml/mssql_native_moodle_recordset.php +++ b/lib/dml/mssql_native_moodle_recordset.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * MSSQL specific recorset. + * MSSQL specific recordset. * * @package moodlecore * @subpackage DML diff --git a/lib/dml/mssql_native_moodle_temptables.php b/lib/dml/mssql_native_moodle_temptables.php index 39825c2cc91..0af51cde713 100644 --- a/lib/dml/mssql_native_moodle_temptables.php +++ b/lib/dml/mssql_native_moodle_temptables.php @@ -17,8 +17,8 @@ /** * MSSQL specific temptables store. Needed because temporary tables - * are named diferently than normal tables. Also used to be able to retrieve - * temp table names included in the get_tables() method od the DB. + * are named differently than normal tables. Also used to be able to retrieve + * temp table names included in the get_tables() method of the DB. * * @package moodlecore * @subpackage DML diff --git a/lib/dml/mysqli_native_moodle_database.php b/lib/dml/mysqli_native_moodle_database.php index 23405eb6ecf..ab3990fe881 100644 --- a/lib/dml/mysqli_native_moodle_database.php +++ b/lib/dml/mysqli_native_moodle_database.php @@ -179,7 +179,7 @@ class mysqli_native_moodle_database extends moodle_database { // If available, enforce strict mode for the session. That guaranties // standard behaviour under some situations, avoiding some MySQL nasty // habits like truncating data or performing some transparent cast losses. - // With strict mode enforced, Moodle DB layer will be consistenly throwing + // With strict mode enforced, Moodle DB layer will be consistently throwing // the corresponding exceptions as expected. $si = $this->get_server_info(); if (version_compare($si['version'], '5.0.2', '>=')) { @@ -201,7 +201,7 @@ class mysqli_native_moodle_database extends moodle_database { * Do NOT use connect() again, create a new instance if needed. */ public function dispose() { - parent::dispose(); // Call parent dispose to write/close session and other common stuff before clossing conn + parent::dispose(); // Call parent dispose to write/close session and other common stuff before closing connection if ($this->mysqli) { $this->mysqli->close(); $this->mysqli = null; @@ -289,7 +289,7 @@ class mysqli_native_moodle_database extends moodle_database { } /** - * Returns datailed information about columns in table. This information is cached internally. + * Returns detailed information about columns in table. This information is cached internally. * @param string $table name * @param bool $usecache * @return array array of database_column_info objects indexed with column names @@ -957,7 +957,7 @@ class mysqli_native_moodle_database extends moodle_database { } /** - * Does this driver suppoer regex syntax when searching + * Does this driver support regex syntax when searching */ public function sql_regex_supported() { return true; -- 2.43.0