Fixed an example typo
diff --git a/user_guide/database/active_record.html b/user_guide/database/active_record.html
index 6977302..bc7cd3d 100644
--- a/user_guide/database/active_record.html
+++ b/user_guide/database/active_record.html
@@ -228,7 +228,7 @@
<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>