From 072f68acabc1e95f9cd2d3fe7e12b509fc32bd5c Mon Sep 17 00:00:00 2001 From: Greg Aker Date: Fri, 12 Nov 2010 08:51:52 -0600 Subject: Fix #230 where the validation class was referenced in the docs, not the form_validation class. --- user_guide/general/libraries.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'user_guide/general/libraries.html') 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 $this->load->library('class name'); -

Where class name is the name of the class you want to invoke. For example, to load the validation class you would do this:

+

Where class name is the name of the class you want to invoke. For example, to load the form validation class you would do this:

-$this->load->library('validation'); +$this->load->library('form_validation');

Once initialized you can use it as indicated in the user guide page corresponding to that class.

-- cgit v1.2.3-24-g4f1b