diff options
author | Derek Allard <derek.allard@ellislab.com> | 2008-07-09 20:36:07 +0200 |
---|---|---|
committer | Derek Allard <derek.allard@ellislab.com> | 2008-07-09 20:36:07 +0200 |
commit | 8516a37ba3d99cc909b1ec1b005eae1401585523 (patch) | |
tree | b514ed12838b151318f6701206d75bbb97ce35a2 /user_guide/database | |
parent | dd7f4a995ee2c7042bc6be51a3c754aa5e077d39 (diff) |
guide typo
Diffstat (limited to 'user_guide/database')
-rw-r--r-- | user_guide/database/active_record.html | 2 |
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 />
|