diff options
author | vlakoff <vlakoff@gmail.com> | 2014-05-18 05:13:33 +0200 |
---|---|---|
committer | vlakoff <vlakoff@gmail.com> | 2014-05-18 05:13:33 +0200 |
commit | 102105d9adeabdd2f7e8863c1d5378f2ddc35a32 (patch) | |
tree | 92ffa7933d6b3697bea79ed28bb2c57fa437d284 | |
parent | 3d980ef57c4f5ff987788dcc8db0dfa420cf207d (diff) |
Adjust docblock of load_class()
-rw-r--r-- | system/core/Common.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/core/Common.php b/system/core/Common.php index 677ceaf97..23b95a497 100644 --- a/system/core/Common.php +++ b/system/core/Common.php @@ -124,7 +124,7 @@ if ( ! function_exists('load_class')) * * @param string the class name being requested * @param string the directory where the class should be found - * @param string the class name prefix + * @param string an optional argument to pass to the class constructor * @return object */ function &load_class($class, $directory = 'libraries', $param = NULL) |