diff options
author | vlakoff <vlakoff@gmail.com> | 2012-07-03 07:28:50 +0200 |
---|---|---|
committer | vlakoff <vlakoff@gmail.com> | 2012-07-03 07:28:50 +0200 |
commit | 02506187c12ee6236d3cc7a1d992cfeb987b36aa (patch) | |
tree | 7eb2bc6c44f4cd7bcf32361f5ffb8cf647624a8f /system/core | |
parent | 01215718d8b4eedcc15d3edf670b58b320c68d62 (diff) |
Fix an error in Loader code documentation
That's not $this->load_vars(), but $this->load->vars()
Diffstat (limited to 'system/core')
-rw-r--r-- | system/core/Loader.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/core/Loader.php b/system/core/Loader.php index 94739c74a..d51ee0b34 100644 --- a/system/core/Loader.php +++ b/system/core/Loader.php @@ -820,7 +820,7 @@ class CI_Loader { /* * Extract and cache variables * - * You can either set variables using the dedicated $this->load_vars() + * You can either set variables using the dedicated $this->load->vars() * function or via the second parameter of this function. We'll merge * the two types and cache them so that views that are embedded within * other views can have access to these variables. |