Fix #230 where the validation class was referenced in the docs, not the form_validation class.
diff --git a/user_guide/general/libraries.html b/user_guide/general/libraries.html
index 4d6064f..dc0d9b6 100644
--- a/user_guide/general/libraries.html
+++ b/user_guide/general/libraries.html
@@ -63,9 +63,9 @@
 
 <code>$this->load->library('<var>class name</var>'); </code>
 
-<p>Where <var>class name</var> is the name of the class you want to invoke.  For example, to load the validation class you would do this:</p>
+<p>Where <var>class name</var> is the name of the class you want to invoke.  For example, to load the form validation class you would do this:</p>
 
-<code>$this->load->library('<var>validation</var>'); </code>
+<code>$this->load->library('<var>form_validation</var>'); </code>
 
 <p>Once initialized you can use it as indicated in the user guide page corresponding to that class.</p>