summaryrefslogtreecommitdiffstats
path: root/user_guide_src/source/libraries/loader.rst
diff options
context:
space:
mode:
authorConnor Tumbleson <connor.tumbleson@gmail.com>2014-01-11 13:58:43 +0100
committerConnor Tumbleson <connor.tumbleson@gmail.com>2014-01-11 13:58:43 +0100
commit75b3fb26a324c71ff18fa19b2a3caa357f8133ec (patch)
treec6a026bbebbc313a1c2d5476ff011b8ad71c66bd /user_guide_src/source/libraries/loader.rst
parentd0bc7eb366610ad2e68d5921b363c665ccda1ff3 (diff)
cleanup warnings
Signed-off-by: Connor Tumbleson <connor.tumbleson@gmail.com>
Diffstat (limited to 'user_guide_src/source/libraries/loader.rst')
-rw-r--r--user_guide_src/source/libraries/loader.rst12
1 files changed, 4 insertions, 8 deletions
diff --git a/user_guide_src/source/libraries/loader.rst b/user_guide_src/source/libraries/loader.rst
index 477639969..ec5a87bb4 100644
--- a/user_guide_src/source/libraries/loader.rst
+++ b/user_guide_src/source/libraries/loader.rst
@@ -116,8 +116,7 @@ Class Reference
$this->load->library(array('email', 'table'));
- Setting options
- ---------------
+ **Setting options**
The second (optional) parameter allows you to optionally pass
configuration setting. You will typically pass these as an array::
@@ -137,8 +136,7 @@ Class Reference
Please take note, when multiple libraries are supplied in an array for
the first parameter, each will receive the same parameter information.
- Assigning a Library to a different object name
- ----------------------------------------------
+ **Assigning a Library to a different object name**
If the third (optional) parameter is blank, the library will usually be
assigned to an object with the same name as the library. For example, if
@@ -184,8 +182,7 @@ Class Reference
$this->load->driver(array('session', 'cache'));
- Setting options
- ---------------
+ **Setting options**
The second (optional) parameter allows you to optionally pass
configuration settings. You will typically pass these as an array::
@@ -202,8 +199,7 @@ Class Reference
is explained in detail in its own page, so please read the information
regarding each one you would like to use.
- Assigning a Driver to a different object name
- ---------------------------------------------
+ **Assigning a Driver to a different object name**
If the third (optional) parameter is blank, the library will be assigned
to an object with the same name as the parent class. For example, if