diff options
Diffstat (limited to 'user_guide/database')
-rw-r--r-- | user_guide/database/active_record.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/user_guide/database/active_record.html b/user_guide/database/active_record.html index 871c59a5d..23f5ce545 100644 --- a/user_guide/database/active_record.html +++ b/user_guide/database/active_record.html @@ -662,7 +662,7 @@ the data to the second parameter of the function:</p> // Produces:<br /> // DELETE FROM mytable <br /> // WHERE id = $id</code></p> -<p>An array of table names can be passed into delete() if you would like to delete data from more then 1 table.</p> +<p>An array of table names can be passed into delete() if you would like to delete data from more than 1 table.</p> <p><code>$tables = array('table1', 'table2', 'table3');<br /> $this->db->where('id', '5');<br /> $this->db->delete($tables);</code></p> |