diff options
author | Andrey Andreev <narf@devilix.net> | 2014-04-20 02:14:26 +0200 |
---|---|---|
committer | Andrey Andreev <narf@devilix.net> | 2014-04-20 02:14:26 +0200 |
commit | 4e35824ca5f89bdd58827360e16f151e6f5cc61b (patch) | |
tree | 25fdd0974120becb99d7e7c93276afbbf37bd37c /user_guide_src/source | |
parent | 3526061b49abe925558d0acb9447fae56caf51a5 (diff) | |
parent | 8fe7b62f2d53adb61425028d7c21e396bd938e69 (diff) |
Merge pull request #3017 from kakysha/develop
Doc fix for Encryption library
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 ================ |