diff --git a/user_guide/libraries/language.html b/user_guide/libraries/language.html
index 1078653..c407001 100644
--- a/user_guide/libraries/language.html
+++ b/user_guide/libraries/language.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>

@@ -70,7 +70,7 @@
 

 <p>Language files are typically stored in your <dfn>system/language</dfn> directory.  Alternately you can create a folder called <kbd>language</kbd> inside

 your <kbd>application</kbd> folder and store them there.  Code Igniter will look first in your <dfn>system/application/language</dfn>

-directory.  If the directory does not exist or the specified language is not located there CI will instead look in your global 

+directory.  If the directory does not exist or the specified language is not located there CI will instead look in your global

 <dfn>system/language</dfn> folder.</p>

 

 <p class="important"><strong>Note:</strong>&nbsp; Each language should be stored in its own folder.  For example, the English files are located at:

@@ -87,7 +87,7 @@
 

 <code>$lang['language_key'] = "The actual message to be shown";</code>

 

-<p><strong>Note:</strong> It's a good practice to use a common prefix for all messages in a given file to avoid collisions with 

+<p><strong>Note:</strong> It's a good practice to use a common prefix for all messages in a given file to avoid collisions with

 similarly named items in other files.  For example, if you are creating error messages you might prefix them with <var>error_</var></p>

 

 <code>$lang['<var>error</var>_email_missing'] = "You must submit an email address";<br />