diff --git a/user_guide/database/results.html b/user_guide/database/results.html
index a301bc3..bae8a75 100644
--- a/user_guide/database/results.html
+++ b/user_guide/database/results.html
@@ -12,7 +12,7 @@
 <script type="text/javascript" src="../nav/moo.fx.js"></script>

 <script type="text/javascript">

 window.onload = function() {

-	myHeight = new fx.Height('nav', {duration: 400}); 

+	myHeight = new fx.Height('nav', {duration: 400});

 	myHeight.hide();

 }

 </script>

@@ -119,7 +119,7 @@
 

 	<h2>row()</h2>

 	

-	<p>This function returns a single result row.  If your query has more than one row, it returns only the first row.  

+	<p>This function returns a single result row.  If your query has more than one row, it returns only the first row.

 	The result is returned as an <strong>object</strong>.  Here's a usage example:</p>

 	<code>

 	$query = $this->db->query("YOUR QUERY");<br />

@@ -161,7 +161,7 @@
 	

 	<code>$row = $query->row_array(<dfn>5</dfn>);</code>

 	

- 

+

  	<p>In addition, you can walk forward/backwards/first/last through your results using these variations:</p>

 

 <p>