diff --git a/user_guide/installation/upgrade_133.html b/user_guide/installation/upgrade_133.html
index eed40cd..d6ff59a 100644
--- a/user_guide/installation/upgrade_133.html
+++ b/user_guide/installation/upgrade_133.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>

@@ -62,7 +62,7 @@
 

 <h1>Upgrading from 1.3.2 to 1.3.3</h1>

 

-<p class="important"><strong>Note:</strong> The instructions on this page assume you are running version 1.3.2.  If you 

+<p class="important"><strong>Note:</strong> The instructions on this page assume you are running version 1.3.2.  If you

 have not upgraded to that version please do so first.</p>

 

 <p>Before performing an update you should take your site offline by replacing the index.php file with a static one.</p>

@@ -90,7 +90,7 @@
 

 <p>As of version 1.3.3, Code Igniter does <strong>not</strong> connect automatically to your database when a model is loaded.  This

 allows you greater flexibility in determining which databases you would like used with your models.  If your application is not connecting

-to your database prior to a model being loaded you will have to update your code.  There are several options for connecting, 

+to your database prior to a model being loaded you will have to update your code.  There are several options for connecting,

 <a href="../general/models.html">as described here</a>.