summaryrefslogtreecommitdiffstats
path: root/user_guide/database
diff options
context:
space:
mode:
Diffstat (limited to 'user_guide/database')
-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 f644ba7df..5b7187bcf 100644
--- a/user_guide/database/active_record.html
+++ b/user_guide/database/active_record.html
@@ -241,7 +241,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 = 'Joe' AND title = 'boss' AND status = 'active'
+ <br /><br />// WHERE = name 'Joe' AND title = 'boss' AND status = 'active'
</code>