diff options
author | Claudio Galdiolo <claudio.galdiolo@gmail.com> | 2015-01-29 16:25:44 +0100 |
---|---|---|
committer | Claudio Galdiolo <claudio.galdiolo@gmail.com> | 2015-01-29 16:25:44 +0100 |
commit | 5c9d905ad883cd4ab1c47652cd89f0c9b1f9fece (patch) | |
tree | 39b2c570bba880d356ec8b818648f359cc1f6339 /tests/mocks/libraries/table.php | |
parent | 80b7a38c2a66f249bb6e21e8b238ea34023618d1 (diff) |
fix typo in comments
Diffstat (limited to 'tests/mocks/libraries/table.php')
-rw-r--r-- | tests/mocks/libraries/table.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/mocks/libraries/table.php b/tests/mocks/libraries/table.php index 87c278bce..08f80072a 100644 --- a/tests/mocks/libraries/table.php +++ b/tests/mocks/libraries/table.php @@ -2,7 +2,7 @@ class Mock_Libraries_Table extends CI_Table { - // 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_Table extends CI_Table { throw new BadMethodCallException('Method '.$method.' was not found'); } -}
\ No newline at end of file +} |