summaryrefslogtreecommitdiffstats
path: root/user_guide/libraries/loader.html
diff options
context:
space:
mode:
authoradmin <devnull@localhost>2006-10-21 20:04:01 +0200
committeradmin <devnull@localhost>2006-10-21 20:04:01 +0200
commite7e1dcd452a15abaaa01c03cd1ade564e3a59453 (patch)
treecf531f1e81ce86d28eb9dce4d9c0138e2a40ca90 /user_guide/libraries/loader.html
parent9fcc28a29299fbbc242f87bf1b1e61fda6543886 (diff)
Diffstat (limited to 'user_guide/libraries/loader.html')
-rw-r--r--user_guide/libraries/loader.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/user_guide/libraries/loader.html b/user_guide/libraries/loader.html
index 44bae34ad..32bbddfe6 100644
--- a/user_guide/libraries/loader.html
+++ b/user_guide/libraries/loader.html
@@ -83,13 +83,13 @@ Note: We use the terms "class" and "library" interchangeably.</p>
<p>Once loaded, the library will be ready for use, using <kbd>$this->email-></kbd><samp><em>some_function</em>()</samp>.
-Each library is described in detail in its own page, so please read theinformation regarding each one you would like to use.</p>
+Each library is described in detail in its own page, so please read the information regarding each one you would like to use.</p>
<p>Parameters can be passed to the library via an array in the second parameter.
-<p>If you would like your libraries assigned to a different variable name then the default you can specify the name in the second paramter:</p>
+<p>If you would like your libraries assigned to a different variable name then the default you can specify the name in the second parameter:</p>
<code>
$this->load->library('email', 'E'); // Assigns the email object to "E"<br />