summaryrefslogtreecommitdiffstats
path: root/user_guide/database/active_record.html
diff options
context:
space:
mode:
Diffstat (limited to 'user_guide/database/active_record.html')
-rw-r--r--user_guide/database/active_record.html2
1 files changed, 1 insertions, 1 deletions
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 />