fixed typo in AR docs. NOTE: Sphinx gives a ReST error for unknown title targets, but they do exist, and links are built properly
diff --git a/user_guide_src/source/database/active_record.rst b/user_guide_src/source/database/active_record.rst
index 7230812..5555a30 100644
--- a/user_guide_src/source/database/active_record.rst
+++ b/user_guide_src/source/database/active_record.rst
@@ -79,11 +79,12 @@
// Produces string: SELECT title, content, date FROM mytable
The key thing to notice in the above example is that the second query did not
-utlize `$this->db->from()`_ and did not pass a table name into the first
+utilize `$this->db->from()`_ and did not pass a table name into the first
parameter. The reason for this outcome is because the query has not been
executed using `$this->db->get()`_ which resets values or reset directly
using `$this-db->reset_query()`_.
+
$this->db->get_where()
======================