summaryrefslogtreecommitdiffstats
path: root/user_guide/database/active_record.html
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/database/active_record.html
parentdd7f4a995ee2c7042bc6be51a3c754aa5e077d39 (diff)
guide typo
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 />