result_array() returns an empty array when no result is produced.
diff --git a/user_guide/database/results.html b/user_guide/database/results.html
index c941d5b..7b46d21 100644
--- a/user_guide/database/results.html
+++ b/user_guide/database/results.html
@@ -105,7 +105,7 @@
<h2>result_array()</h2>
- <p>This function returns the query result as a pure array, or FALSE on failure. Typically you'll use this in a foreach loop, like this:</p>
+ <p>This function returns the query result as a pure array, or an empty array when no result is produced. Typically you'll use this in a foreach loop, like this:</p>
<code>
$query = $this->db->query("YOUR QUERY");<br />
<br />