diff options
Diffstat (limited to 'user_guide_src/source')
-rw-r--r-- | user_guide_src/source/libraries/encryption.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/user_guide_src/source/libraries/encryption.rst b/user_guide_src/source/libraries/encryption.rst index 25bf7c12a..a4415f510 100644 --- a/user_guide_src/source/libraries/encryption.rst +++ b/user_guide_src/source/libraries/encryption.rst @@ -33,11 +33,11 @@ Like most other classes in CodeIgniter, the Encryption library is initialized in your controller using the ``$this->load->library()`` method:: - $this->load->library('encrypt'); + $this->load->library('encryption'); Once loaded, the Encryption library object will be available using:: - $this->encrypt + $this->encryption Default behavior ================ |