summaryrefslogtreecommitdiffstats
path: root/user_guide
diff options
context:
space:
mode:
authorDerek Allard <derek.allard@ellislab.com>2008-07-09 20:36:07 +0200
committerDerek Allard <derek.allard@ellislab.com>2008-07-09 20:36:07 +0200
commit8516a37ba3d99cc909b1ec1b005eae1401585523 (patch)
treeb514ed12838b151318f6701206d75bbb97ce35a2 /user_guide
parentdd7f4a995ee2c7042bc6be51a3c754aa5e077d39 (diff)
guide typo
Diffstat (limited to 'user_guide')
-rw-r--r--user_guide/changelog.html1
-rw-r--r--user_guide/database/active_record.html2
2 files changed, 2 insertions, 1 deletions
diff --git a/user_guide/changelog.html b/user_guide/changelog.html
index de8504c04..a96e3c88f 100644
--- a/user_guide/changelog.html
+++ b/user_guide/changelog.html
@@ -78,6 +78,7 @@ SVN Revision: XXXX</p>
<h3>Bug fixes for 1.6.4</h3>
<ul>
<li>Fixed bug in xss_clean() that could remove some desirable tag attributes.</li>
+ <li>Fixed assorted user guide typos or examples (#4840).</li>
</ul>
<h2>Version 1.6.3</h2>
diff --git a/user_guide/database/active_record.html b/user_guide/database/active_record.html
index 39bf34f50..afdc9b5ef 100644
--- a/user_guide/database/active_record.html
+++ b/user_guide/database/active_record.html
@@ -90,7 +90,7 @@ is generated by each database adapter. It also allows for safer queries, since
<br />
// Produces: SELECT * FROM mytable</code>
-<p>The second and third parameters enable you do set a limit and offset clause:</p>
+<p>The second and third parameters enable you to set a limit and offset clause:</p>
<code>$query = $this->db->get('mytable', 10, 20);<br />
<br />