fixed validation errors... about a zillion of em.
diff --git a/user_guide/database/transactions.html b/user_guide/database/transactions.html
index ecc5164..75aa4e8 100644
--- a/user_guide/database/transactions.html
+++ b/user_guide/database/transactions.html
@@ -122,7 +122,7 @@
 <h2>Enabling Transactions</h2>

 

 <p>Transactions are enabled automatically the moment you use <dfn>$this->db->trans_start()</dfn>.  If you would like to disable transactions you

-can do so using <dfn>$this->db->trans_off()</dfn>:

+can do so using <dfn>$this->db->trans_off()</dfn>:</p>

 

 <code>

 <kbd>$this->db->trans_off()</kbd><br /><br />

@@ -138,7 +138,7 @@
 <h2>Test Mode</h2>

 

 <p>You can optionally put the transaction system into "test mode", which will cause your queries to be rolled back -- even if the queries produce a valid result.

-To use test mode simply set the first parameter in the <dfn>$this->db->trans_start()</dfn> function to <samp>TRUE</samp>:

+To use test mode simply set the first parameter in the <dfn>$this->db->trans_start()</dfn> function to <samp>TRUE</samp>:</p>

 

 <code>

 $this->db->trans_start(<samp>TRUE</samp>); // Query will be rolled back<br />

@@ -190,7 +190,7 @@
 <a href="#top">Top of Page</a>&nbsp;&nbsp;&nbsp;&middot;&nbsp;&nbsp;

 <a href="../index.html">User Guide Home</a>&nbsp;&nbsp;&nbsp;&middot;&nbsp;&nbsp;

 Next Topic:&nbsp;&nbsp;<a href="table_data.html">Table Metadata</a>

-<p>

+</p>

 <p><a href="http://www.codeigniter.com">CodeIgniter</a> &nbsp;&middot;&nbsp; Copyright &#169; 2007 &nbsp;&middot;&nbsp; <a href="http://ellislab.com/">Ellislab, Inc.</a></p>

 </div>