diff options
author | Greg Aker <greg.aker@ellislab.com> | 2010-11-12 15:51:52 +0100 |
---|---|---|
committer | Greg Aker <greg.aker@ellislab.com> | 2010-11-12 15:51:52 +0100 |
commit | 072f68acabc1e95f9cd2d3fe7e12b509fc32bd5c (patch) | |
tree | 36573f0de021a2fa6c9de7bdcbde8293a31d92c8 /user_guide | |
parent | 857c6f5f673a0f45fced3e6d1c288c7b881b58bc (diff) |
Fix #230 where the validation class was referenced in the docs, not the form_validation class.
Diffstat (limited to 'user_guide')
-rw-r--r-- | user_guide/general/libraries.html | 4 |
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> |