summaryrefslogtreecommitdiffstats
path: root/user_guide
diff options
context:
space:
mode:
authorDerek Allard <derek.allard@ellislab.com>2009-02-04 13:53:48 +0100
committerDerek Allard <derek.allard@ellislab.com>2009-02-04 13:53:48 +0100
commitb75734ea2a368a18ca8dc71155c973a7e7e9aa2a (patch)
tree6adc7da0b5b0a9fe8e67b7a428f73c7badfa26e0 /user_guide
parent58944649777c75be8242488b9010fa2a95a3e37a (diff)
grammer ... um, grammar... fix.
Diffstat (limited to 'user_guide')
-rw-r--r--user_guide/changelog.html2
-rw-r--r--user_guide/database/active_record.html2
2 files changed, 2 insertions, 2 deletions
diff --git a/user_guide/changelog.html b/user_guide/changelog.html
index d0fe3de80..84708f0e0 100644
--- a/user_guide/changelog.html
+++ b/user_guide/changelog.html
@@ -95,7 +95,7 @@ SVN Revision: </p>
<h3>Bug fixes for 1.7.1</h3>
<ul>
- <li>Fixed assorted user guide typos or examples (#6521, #6339).</li>
+ <li>Fixed assorted user guide typos or examples (#6521, #6339, #6259).</li>
<li>Fixed a bug in the MySQLi driver when no port is specified</li>
<li>Fixed a bug (#5702), in which the field label was not being fetched properly, when "matching" one field to another.</li>
<li>Fixed a bug in which identifers were not being escaped properly when reserved characters were used.</li>
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-&gt;db-&gt;where('id', '5');<br />
$this-&gt;db-&gt;delete($tables);</code></p>