grammer ... um, grammar... fix.
diff --git a/user_guide/changelog.html b/user_guide/changelog.html
index d0fe3de..84708f0 100644
--- a/user_guide/changelog.html
+++ b/user_guide/changelog.html
@@ -95,7 +95,7 @@
 
 <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 871c59a..23f5ce5 100644
--- a/user_guide/database/active_record.html
+++ b/user_guide/database/active_record.html
@@ -662,7 +662,7 @@
 	// 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>