summaryrefslogtreecommitdiffstats
path: root/user_guide/database/active_record.html
diff options
context:
space:
mode:
authorDerek Allard <derek.allard@ellislab.com>2010-07-05 13:25:11 +0200
committerDerek Allard <derek.allard@ellislab.com>2010-07-05 13:25:11 +0200
commit7c708ca4da0e0848c15ed78f9a14aa637a5ba14c (patch)
treedcbea2c5e77d2fd73195f63e4fbd796c60abd40d /user_guide/database/active_record.html
parentc78a259b4af7430f237636b5f93d6eb59443a1e2 (diff)
Fixed an example 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 6977302a9..bc7cd3d11 100644
--- a/user_guide/database/active_record.html
+++ b/user_guide/database/active_record.html
@@ -228,7 +228,7 @@ $this->db->join('comments', 'comments.id = blogs.id', <strong>'left'</strong>);<
<code>$this->db->where('name', $name);<br />
$this->db->where('title', $title);<br />
$this->db->where('status', $status);
- <br /><br />// WHERE name 'Joe' AND title = 'boss' AND status = 'active' </code> </li>
+ <br /><br />// WHERE name = 'Joe' AND title = 'boss' AND status = 'active' </code> </li>
<li><strong>Custom key/value method:</strong>