summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--system/codeigniter/CodeIgniter.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/system/codeigniter/CodeIgniter.php b/system/codeigniter/CodeIgniter.php
index 93c1dba5f..409cf7765 100644
--- a/system/codeigniter/CodeIgniter.php
+++ b/system/codeigniter/CodeIgniter.php
@@ -52,11 +52,11 @@ set_magic_quotes_runtime(0); // Kill magic quotes
$BM =& load_class('Benchmark');
$BM->mark('total_execution_time_start');
-$BM->mark('loading_time_base_clases_start');
+$BM->mark('loading_time_base_classes_start');
/*
* ------------------------------------------------------
- * Instantiate the hooks classe
+ * Instantiate the hooks class
* ------------------------------------------------------
*/
@@ -109,7 +109,7 @@ $LANG =& load_class('Language');
* ------------------------------------------------------
*
* Note: Due to the poor object handling in PHP 4 we'll
- * contditionally load different versions of the base
+ * conditionally load different versions of the base
* class. Retaining PHP 4 compatibility requires a bit of a hack.
*
* Note: The Loader class needs to be included first
@@ -132,7 +132,7 @@ load_class('Controller', FALSE);
require(APPPATH.'controllers/'.$RTR->fetch_directory().$RTR->fetch_class().EXT);
// Set a mark point for benchmarking
-$BM->mark('loading_time_base_clases_end');
+$BM->mark('loading_time_base_classes_end');
/*