summaryrefslogtreecommitdiffstats
path: root/user_guide/general/libraries.html
diff options
context:
space:
mode:
Diffstat (limited to 'user_guide/general/libraries.html')
-rw-r--r--user_guide/general/libraries.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/user_guide/general/libraries.html b/user_guide/general/libraries.html
index 4d6064fa9..dc0d9b6c6 100644
--- a/user_guide/general/libraries.html
+++ b/user_guide/general/libraries.html
@@ -63,9 +63,9 @@ In most cases, to use one of these classes involves initializing it within a <a
<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>