diff options
author | Claudio Galdiolo <claudio.galdiolo@gmail.com> | 2015-01-29 16:25:01 +0100 |
---|---|---|
committer | Claudio Galdiolo <claudio.galdiolo@gmail.com> | 2015-01-29 16:25:01 +0100 |
commit | 80b7a38c2a66f249bb6e21e8b238ea34023618d1 (patch) | |
tree | 9b91e0f726ae91bc8f87455b142719dcb4faacc7 /tests/mocks/libraries | |
parent | cb29049ea6d5a46fff032e15234b3a1b6c3bc54b (diff) |
fix typo in comments
Diffstat (limited to 'tests/mocks/libraries')
-rw-r--r-- | tests/mocks/libraries/encrypt.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/mocks/libraries/encrypt.php b/tests/mocks/libraries/encrypt.php index f1859398f..c14d1e02f 100644 --- a/tests/mocks/libraries/encrypt.php +++ b/tests/mocks/libraries/encrypt.php @@ -2,7 +2,7 @@ class Mock_Libraries_Encrypt extends CI_Encrypt { - // Overide inaccesible protected method + // Override inaccessible protected method public function __call($method, $params) { if (is_callable(array($this, '_'.$method))) @@ -13,4 +13,4 @@ class Mock_Libraries_Encrypt extends CI_Encrypt { throw new BadMethodCallException('Method '.$method.' was not found'); } -}
\ No newline at end of file +} |