diff options
author | Kakysha <ezhikvdele@gmail.com> | 2014-04-19 16:01:04 +0200 |
---|---|---|
committer | Kakysha <ezhikvdele@gmail.com> | 2014-04-19 16:01:04 +0200 |
commit | 8fe7b62f2d53adb61425028d7c21e396bd938e69 (patch) | |
tree | 25fdd0974120becb99d7e7c93276afbbf37bd37c /user_guide_src/source/libraries | |
parent | 3526061b49abe925558d0acb9447fae56caf51a5 (diff) |
Doc fix for Encryption library
Diffstat (limited to 'user_guide_src/source/libraries')
-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 ================ |